diff options
author | Marek Polacek <polacek@redhat.com> | 2017-07-31 13:44:16 +0000 |
---|---|---|
committer | Marek Polacek <mpolacek@gcc.gnu.org> | 2017-07-31 13:44:16 +0000 |
commit | 4ab033db415dfd8322d71604e4a9191700a07080 (patch) | |
tree | 39989feadbe13ca4b8664fb58599969fb826a745 /libstdc++-v3 | |
parent | a97cf8f9a381ee26b80c5ccd874deeed3218e79a (diff) | |
download | gcc-4ab033db415dfd8322d71604e4a9191700a07080.zip gcc-4ab033db415dfd8322d71604e4a9191700a07080.tar.gz gcc-4ab033db415dfd8322d71604e4a9191700a07080.tar.bz2 |
re PR libstdc++/81599 (Error in documentation of std::stack)
PR libstdc++/81599
* include/bits/stl_stack.h: Fix typo.
From-SVN: r250743
Diffstat (limited to 'libstdc++-v3')
-rw-r--r-- | libstdc++-v3/ChangeLog | 5 | ||||
-rw-r--r-- | libstdc++-v3/include/bits/stl_stack.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index c723b94..e36ca82 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2017-07-31 Marek Polacek <polacek@redhat.com> + + PR libstdc++/81599 + * include/bits/stl_stack.h: Fix typo. + 2017-07-26 Jonathan Wakely <jwakely@redhat.com> * testsuite/27_io/basic_fstream/53984.cc: Fix test. diff --git a/libstdc++-v3/include/bits/stl_stack.h b/libstdc++-v3/include/bits/stl_stack.h index ac59ec7..5f2b4ab 100644 --- a/libstdc++-v3/include/bits/stl_stack.h +++ b/libstdc++-v3/include/bits/stl_stack.h @@ -86,7 +86,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION * * The second template parameter defines the type of the underlying * sequence/container. It defaults to std::deque, but it can be - * any type that supports @c back, @c push_back, and @c pop_front, + * any type that supports @c back, @c push_back, and @c pop_back, * such as std::list, std::vector, or an appropriate user-defined * type. * |