diff options
author | Jonathan Wakely <jwakely@redhat.com> | 2015-11-13 11:30:30 +0000 |
---|---|---|
committer | Jonathan Wakely <redi@gcc.gnu.org> | 2015-11-13 11:30:30 +0000 |
commit | 011b25e4f541ec0873b348ff7dd27681e74963f8 (patch) | |
tree | 8c9244134e38a050c656a8c3be58f0ac62016bd4 /libstdc++-v3 | |
parent | b8c9f7afb7965379109982bffeaf647b7a8c4a47 (diff) | |
download | gcc-011b25e4f541ec0873b348ff7dd27681e74963f8.zip gcc-011b25e4f541ec0873b348ff7dd27681e74963f8.tar.gz gcc-011b25e4f541ec0873b348ff7dd27681e74963f8.tar.bz2 |
* include/experimental/bits/shared_ptr.h: Tweak comments.
From-SVN: r230306
Diffstat (limited to 'libstdc++-v3')
-rw-r--r-- | libstdc++-v3/ChangeLog | 4 | ||||
-rw-r--r-- | libstdc++-v3/include/experimental/bits/shared_ptr.h | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index fc49f8d..ca688a0 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,7 @@ +2015-11-13 Jonathan Wakely <jwakely@redhat.com> + + * include/experimental/bits/shared_ptr.h: Tweak comments. + 2015-11-13 Fan You <youfan.noey@gmail.com> Jonathan Wakely <jwakely@redhat.com> diff --git a/libstdc++-v3/include/experimental/bits/shared_ptr.h b/libstdc++-v3/include/experimental/bits/shared_ptr.h index feba7d7..413652d 100644 --- a/libstdc++-v3/include/experimental/bits/shared_ptr.h +++ b/libstdc++-v3/include/experimental/bits/shared_ptr.h @@ -24,7 +24,7 @@ /** @file experimental/bits/shared_ptr.h * This is an internal header file, included by other library headers. - * Do not attempt to use it directly. @headername{memory} + * Do not attempt to use it directly. @headername{experimental/memory} */ #ifndef _GLIBCXX_EXPERIMENTAL_SHARED_PTR_H @@ -57,7 +57,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION /* * The specification of std::experimental::shared_ptr is slightly different - * to std::shared_ptr (specifically in terms of pointer "compatibility") so + * to std::shared_ptr (specifically in terms of "compatible" pointers) so * to implement std::experimental::shared_ptr without too much duplication * we make it derive from a partial specialization of std::__shared_ptr * using a special tag type, __libfund_v1. |