diff options
author | Paolo Carlini <paolo.carlini@oracle.com> | 2009-10-29 19:45:36 +0000 |
---|---|---|
committer | Paolo Carlini <paolo@gcc.gnu.org> | 2009-10-29 19:45:36 +0000 |
commit | 28a371ae13e22365d9d46b2ec4222b15bd82fe43 (patch) | |
tree | df81f73bc7143157a87fe5af1948a155d6cbd116 /libstdc++-v3 | |
parent | d858307d7b08e7d948bb97f1e1d9c2ee109fb097 (diff) | |
download | gcc-28a371ae13e22365d9d46b2ec4222b15bd82fe43.zip gcc-28a371ae13e22365d9d46b2ec4222b15bd82fe43.tar.gz gcc-28a371ae13e22365d9d46b2ec4222b15bd82fe43.tar.bz2 |
40925.cc: Minor comment fix.
2009-10-29 Paolo Carlini <paolo.carlini@oracle.com>
* testsuite/20_util/pair/40925.cc: Minor comment fix.
From-SVN: r153727
Diffstat (limited to 'libstdc++-v3')
-rw-r--r-- | libstdc++-v3/ChangeLog | 4 | ||||
-rw-r--r-- | libstdc++-v3/testsuite/20_util/pair/40925.cc | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 1903324..2f3f9dc 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,5 +1,9 @@ 2009-10-29 Paolo Carlini <paolo.carlini@oracle.com> + * testsuite/20_util/pair/40925.cc: Minor comment fix. + +2009-10-29 Paolo Carlini <paolo.carlini@oracle.com> + PR libstdc++/40925 * include/bits/stl_pair.h (pair<_T1, _T2>::pair(_U1&&, _U2&&)): Use enable_if to remove it from the overload set when either _U1 diff --git a/libstdc++-v3/testsuite/20_util/pair/40925.cc b/libstdc++-v3/testsuite/20_util/pair/40925.cc index d490723..491235d 100644 --- a/libstdc++-v3/testsuite/20_util/pair/40925.cc +++ b/libstdc++-v3/testsuite/20_util/pair/40925.cc @@ -18,10 +18,6 @@ // with this library; see the file COPYING3. If not see // <http://www.gnu.org/licenses/>. -// NOTE: This makes use of the fact that we know how moveable -// is implemented on pair, and also vector. If the implementation -// changes this test may begin to fail. - #include <utility> struct X |