OSDN Git Service

2009-12-31 Paolo Carlini <paolo.carlini@oracle.com>
authorpaolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 31 Dec 2009 14:38:01 +0000 (14:38 +0000)
committerpaolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 31 Dec 2009 14:38:01 +0000 (14:38 +0000)
* include/std/type_traits: Fix minor stylistic nit.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@155537 138bc75d-0d04-0410-961f-82ee72b054a4

libstdc++-v3/ChangeLog
libstdc++-v3/include/std/type_traits

index 4e706aa..6f2969f 100644 (file)
@@ -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.
index a784bee..37f6635 100644 (file)
@@ -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(...);