aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaolo Carlini <paolo.carlini@oracle.com>2009-12-31 14:38:01 +0000
committerPaolo Carlini <paolo@gcc.gnu.org>2009-12-31 14:38:01 +0000
commit4b3d7a7e92671080395d91dc5f774cded578d7e0 (patch)
tree0e30ead52d8110d907e320a260eea2ec5a19cda5
parentb0302c68d8a6fc2479475c1e536df5db490b2b23 (diff)
downloadgcc-4b3d7a7e92671080395d91dc5f774cded578d7e0.zip
gcc-4b3d7a7e92671080395d91dc5f774cded578d7e0.tar.gz
gcc-4b3d7a7e92671080395d91dc5f774cded578d7e0.tar.bz2
type_traits: Fix minor stylistic nit.
2009-12-31 Paolo Carlini <paolo.carlini@oracle.com> * include/std/type_traits: Fix minor stylistic nit. From-SVN: r155537
-rw-r--r--libstdc++-v3/ChangeLog4
-rw-r--r--libstdc++-v3/include/std/type_traits4
2 files changed, 6 insertions, 2 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 4e706aa..6f2969f 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,5 +1,9 @@
2009-12-31 Paolo Carlini <paolo.carlini@oracle.com>
+ * include/std/type_traits: Fix minor stylistic nit.
+
+2009-12-31 Paolo Carlini <paolo.carlini@oracle.com>
+
* include/std/type_traits (__is_constructible_helper1): Rename
to __is_constructible_helper1, tweaked to a specialization of
__is_constructible_helper.
diff --git a/libstdc++-v3/include/std/type_traits b/libstdc++-v3/include/std/type_traits
index a784bee..37f6635 100644
--- a/libstdc++-v3/include/std/type_traits
+++ b/libstdc++-v3/include/std/type_traits
@@ -199,8 +199,8 @@ namespace std
class __is_constructible_helper
: public __sfinae_types
{
- template<typename _Tp1, typename... __Args1>
- static decltype(_Tp1(declval<__Args1>()...), __one()) __test(int);
+ template<typename _Tp1, typename... _Args1>
+ static decltype(_Tp1(declval<_Args1>()...), __one()) __test(int);
template<typename, typename...>
static __two __test(...);