]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
type_traits: Fix minor stylistic nit.
authorPaolo Carlini <paolo.carlini@oracle.com>
Thu, 31 Dec 2009 14:38:01 +0000 (14:38 +0000)
committerPaolo Carlini <paolo@gcc.gnu.org>
Thu, 31 Dec 2009 14:38:01 +0000 (14:38 +0000)
2009-12-31  Paolo Carlini  <paolo.carlini@oracle.com>

* include/std/type_traits: Fix minor stylistic nit.

From-SVN: r155537

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

index 4e706aa0b710080afdb92264a3bb82bcd029186f..6f2969f58fe1f5cccb714e4114511540735e4953 100644 (file)
@@ -1,3 +1,7 @@
+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
index a784bee1825a03d70b3eb8210a5805c064515f5a..37f66351c546cb1866deace3ba808381fd9c2219 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(...);