diff options
author | Paolo Carlini <paolo.carlini@oracle.com> | 2010-06-10 00:43:50 +0000 |
---|---|---|
committer | Paolo Carlini <paolo@gcc.gnu.org> | 2010-06-10 00:43:50 +0000 |
commit | e4f32cb0a55eefcd56b1c42bcaf5c8aadc692ba6 (patch) | |
tree | 82da2d0a7749716300e33183ea21af0081cd90ea /libstdc++-v3/ChangeLog | |
parent | 3cebddd64350cdfa5c9a6ef4ba68b9a506e10ead (diff) | |
download | gcc-e4f32cb0a55eefcd56b1c42bcaf5c8aadc692ba6.zip gcc-e4f32cb0a55eefcd56b1c42bcaf5c8aadc692ba6.tar.gz gcc-e4f32cb0a55eefcd56b1c42bcaf5c8aadc692ba6.tar.bz2 |
type_traits (is_nothrow_constructible): Add.
2010-06-09 Paolo Carlini <paolo.carlini@oracle.com>
* include/std/type_traits (is_nothrow_constructible): Add.
(declval): Add noexcept specification.
* testsuite/util/testsuite_tr1.h (struct NothrowExplicitClass,
ThrowExplicitClass, NoexceptExplicitClass, ExceptExplicitClass):
Add.
* testsuite/20_util/is_nothrow_constructible/value.cc: New.
* testsuite/20_util/is_nothrow_constructible/requirements/
typedefs.cc: Likewise.
* testsuite/20_util/is_nothrow_constructible/requirements/
explicit_instantiation.cc: Likewise.
* testsuite/20_util/make_signed/requirements/typedefs_neg.cc:
Adjust dg-error line numbers.
* testsuite/20_util/make_unsigned/requirements/typedefs_neg.cc:
Likewise.
* testsuite/20_util/declval/requirements/1_neg.cc: Likewise.
From-SVN: r160523
Diffstat (limited to 'libstdc++-v3/ChangeLog')
-rw-r--r-- | libstdc++-v3/ChangeLog | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 2ea2b29..82fc51d 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,21 @@ +2010-06-09 Paolo Carlini <paolo.carlini@oracle.com> + + * include/std/type_traits (is_nothrow_constructible): Add. + (declval): Add noexcept specification. + * testsuite/util/testsuite_tr1.h (struct NothrowExplicitClass, + ThrowExplicitClass, NoexceptExplicitClass, ExceptExplicitClass): + Add. + * testsuite/20_util/is_nothrow_constructible/value.cc: New. + * testsuite/20_util/is_nothrow_constructible/requirements/ + typedefs.cc: Likewise. + * testsuite/20_util/is_nothrow_constructible/requirements/ + explicit_instantiation.cc: Likewise. + * testsuite/20_util/make_signed/requirements/typedefs_neg.cc: + Adjust dg-error line numbers. + * testsuite/20_util/make_unsigned/requirements/typedefs_neg.cc: + Likewise. + * testsuite/20_util/declval/requirements/1_neg.cc: Likewise. + 2010-06-09 Khem Raj <raj.khem@gmail.com> PR libstdc++/44461 |