diff options
author | Paolo Carlini <pcarlini@suse.de> | 2005-08-29 16:47:06 +0000 |
---|---|---|
committer | Paolo Carlini <paolo@gcc.gnu.org> | 2005-08-29 16:47:06 +0000 |
commit | 76c6705ba84e8ed25f64ef01d4fbcda5cec92474 (patch) | |
tree | 4ee9ec5afc25786db72ae611bf7e81a0218744df | |
parent | 8b5f07a224611f7dcff90910b493b93c2ef0c6b8 (diff) | |
download | gcc-76c6705ba84e8ed25f64ef01d4fbcda5cec92474.zip gcc-76c6705ba84e8ed25f64ef01d4fbcda5cec92474.tar.gz gcc-76c6705ba84e8ed25f64ef01d4fbcda5cec92474.tar.bz2 |
stl_map.h (class map): Add missing % in comment.
2005-08-29 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_map.h (class map): Add missing % in comment.
From-SVN: r103610
-rw-r--r-- | libstdc++-v3/ChangeLog | 4 | ||||
-rw-r--r-- | libstdc++-v3/include/bits/stl_map.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index a69c4ce..1a77d62 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,5 +1,9 @@ 2005-08-29 Paolo Carlini <pcarlini@suse.de> + * include/bits/stl_map.h (class map): Add missing % in comment. + +2005-08-29 Paolo Carlini <pcarlini@suse.de> + PR libstdc++/23578 (DR 464 [Ready]) * include/bits/stl_map.h (class map): Add at(const key_type&) member functions. diff --git a/libstdc++-v3/include/bits/stl_map.h b/libstdc++-v3/include/bits/stl_map.h index 81bfc25..6bb6d0f 100644 --- a/libstdc++-v3/include/bits/stl_map.h +++ b/libstdc++-v3/include/bits/stl_map.h @@ -355,7 +355,7 @@ namespace _GLIBCXX_STD * @brief Access to %map data. * @param k The key for which data should be retrieved. * @return A reference to the data whose key is equivalent to k, if - * such a data is present in the map. + * such a data is present in the %map. * @throw std::out_of_range If no such data is present. */ mapped_type& |