mirror of https://github.com/CGAL/cgal
Workaround for a bug in Boost, that checks WIN64 instead of _WIN64
https://svn.boost.org/trac/boost/ticket/5519
This commit is contained in:
parent
34a4fbde11
commit
3d01e09cb8
|
|
@ -27,6 +27,11 @@
|
|||
#ifndef CGAL_CONFIG_H
|
||||
#define CGAL_CONFIG_H
|
||||
|
||||
// Workaround for a bug in Boost, that checks WIN64 instead of _WIN64
|
||||
// https://svn.boost.org/trac/boost/ticket/5519
|
||||
#if defined(_WIN64) && ! defined(WIN64)
|
||||
# define WIN64
|
||||
#endif
|
||||
|
||||
#ifdef CGAL_INCLUDE_WINDOWS_DOT_H
|
||||
// Mimic users including this file which defines min max macros
|
||||
|
|
|
|||
Loading…
Reference in New Issue