template <typename T>
::boost::type_traits::yes_type
BOOST_TT_DECL is_same_tester(T*, T*);
::boost::type_traits::no_type
BOOST_TT_DECL is_same_tester(...);
template
Or does none of it really make a difference?
As things stand probably not: the code that you're looking at there is only used by compilers which * do not support partial specialisation. * and are not MSVC. Are there any compilers still left in that category any more? Certainly none that we test with. John.
"John Maddock"
Or does none of it really make a difference?
As things stand probably not: the code that you're looking at there is only used by compilers which
* do not support partial specialisation. * and are not MSVC.
Are there any compilers still left in that category any more? Certainly none that we test with.
Were there ever any compilers in that category? -- Dave Abrahams Boost Consulting www.boost-consulting.com
participants (3)
-
David Abrahams
-
Gottlob Frege
-
John Maddock