2
0
mirror of https://github.com/boostorg/polygon.git synced 2026-02-13 12:42:12 +00:00

fixed win32 macro usage

[SVN r66901]
This commit is contained in:
Luke Simonson
2010-11-30 17:52:36 +00:00
parent 7893ac89c3
commit 8cea1fc7df

View File

@@ -48,7 +48,7 @@ typedef boost::ulong_long_type polygon_ulong_long_type;
#include <boost/mpl/or.hpp>
#else
#ifdef WIN32
#ifdef _WIN32
#define BOOST_POLYGON_MSVC
#endif
#ifdef __ICC
@@ -290,7 +290,7 @@ namespace boost { namespace polygon{
template <typename T>
struct gtl_if {
#ifdef WIN32
#ifdef BOOST_POLYGON_MSVC
typedef gtl_no type;
#endif
};