forked from boostorg/type_traits
Fix unversioned VC++ checks
[SVN r14436]
This commit is contained in:
@ -38,7 +38,7 @@
|
||||
|
||||
namespace boost{
|
||||
|
||||
#ifdef BOOST_MSVC
|
||||
#if defined(BOOST_MSVC) && BOOST_MSVC <= 1300
|
||||
|
||||
//
|
||||
// MS specific version:
|
||||
|
@ -52,7 +52,7 @@ const bool is_same<T, T>::value;
|
||||
|
||||
#else // BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
|
||||
|
||||
#ifdef BOOST_MSVC
|
||||
#if defined(BOOST_MSVC) && BOOST_MSVC <= 1300
|
||||
//
|
||||
// the following VC6 specific implementation is *NOT* legal
|
||||
// C++, but has the advantage that it works for incomplete
|
||||
|
@ -20,7 +20,7 @@
|
||||
// template test code. To prevent "Internal Compiler Error"
|
||||
// type messages, we have to split these up into lots of
|
||||
// separate functions:
|
||||
#if defined(BOOST_MSVC) || (defined(__BORLANDC__) && (__BORLANDC__ < 0x550))
|
||||
#if defined(BOOST_MSVC) && BOOST_MSVC <= 1300 || (defined(__BORLANDC__) && (__BORLANDC__ < 0x550))
|
||||
#define SHORT_TRANSFORM_TEST
|
||||
#endif
|
||||
#include "boost/type_traits/type_traits_test.hpp"
|
||||
|
Reference in New Issue
Block a user