forked from boostorg/regex
29 lines
779 B
C++
29 lines
779 B
C++
|
|
// define if you want the regex library to use the C locale
|
|
// even on Win32:
|
|
// #define BOOST_REGEX_USE_C_LOCALE
|
|
|
|
// define this is you want the regex library to use the C++
|
|
// locale:
|
|
// #define BOOST_REGEX_USE_CPP_LOCALE
|
|
|
|
|
|
// define this if you want to statically link to regex,
|
|
// even when the runtime is a dll (Probably Win32 specific):
|
|
// #define BOOST_REGEX_STATIC_LINK
|
|
|
|
// define this if you don't want the lib to automatically
|
|
// select its link libraries:
|
|
// #define BOOST_REGEX_NO_LIB
|
|
|
|
// define this if templates with switch statements cause problems:
|
|
// #define BOOST_REGEX_NO_TEMPLATE_SWITCH_MERGE
|
|
|
|
// define this to disable Win32 support when available:
|
|
// #define BOOST_REGEX_NO_W32
|
|
|
|
// define this if bool is not a real type:
|
|
// #define BOOST_REGEX_NO_BOOL
|
|
|
|
|