2009-12-31 Paolo Carlini <paolo.carlini@oracle.com>
* include/std/type_traits: Fix minor stylistic nit.
From-SVN: r155537
+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
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(...);