Make cpp_regex_traits all inline.

This commit is contained in:
jzmaddock
2020-11-27 18:13:59 +00:00
parent 27d2853615
commit ddb682a208
14 changed files with 209 additions and 1360 deletions

View File

@ -19,7 +19,7 @@
#ifndef BOOST_REGEX_CONFIG_HPP
#define BOOST_REGEX_CONFIG_HPP
#if !((__cplusplus >= 201103L) || (defined(_MSC_VER) && (_MSC_VER >= 1600)))
#if !((__cplusplus >= 201103L) || (defined(_MSC_VER) && (_MSC_VER >= 1600)) || defined(BOOST_REGEX_CXX03))
# define BOOST_REGEX_CXX03
#endif