Commit 4b3d7a7e by Paolo Carlini Committed by Paolo Carlini

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
parent b0302c68
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.
......
......@@ -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(...);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment