Suppress warning concerning boost/preprocessor which is included from boost/lexical_cast

This commit is contained in:
Andreas Fabri 2018-06-04 14:06:31 +01:00
parent 7ac433c388
commit 0b972eb950
1 changed files with 8 additions and 0 deletions

View File

@ -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 {