Files
create/src/boost_regex.hpp
2022-12-20 02:56:10 +01:00

19 lines
341 B
C++

#ifndef FREECAD_REGEX_HPP_WORKAROUND
#define FREECAD_REGEX_HPP_WORKAROUND
#include <boost/version.hpp>
// Workaround for boost >= 1.78
#if BOOST_VERSION >= 107800
# ifdef WIN32
# ifndef NOMINMAX
# define NOMINMAX
# endif
# include <Windows.h>
# endif
#endif
#include <boost/regex.hpp>
#endif // #ifndef FREECAD_REGEX_HPP_WORKAROUND