mirror of https://github.com/CGAL/cgal
Suppress warning concerning boost/preprocessor which is included from boost/lexical_cast
This commit is contained in:
parent
7ac433c388
commit
0b972eb950
|
|
@ -26,7 +26,15 @@
|
|||
#include <CGAL/config.h>
|
||||
#include <stdexcept>
|
||||
#include <string>
|
||||
#if defined(BOOST_MSVC)
|
||||
# pragma warning(push)
|
||||
# pragma warning(disable: 4003)
|
||||
#endif
|
||||
#include <boost/lexical_cast.hpp>
|
||||
#if defined(BOOST_MSVC)
|
||||
# pragma warning(pop)
|
||||
#endif
|
||||
|
||||
|
||||
namespace CGAL {
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue