Skip to content

Commit

Permalink
fix SCN_HAS_STD_REGEX_MULTILINE macro
Browse files Browse the repository at this point in the history
  • Loading branch information
jiayuehua committed Jan 30, 2024
1 parent 7e014d4 commit 2ff6c93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/scn/detail/pp_detect.h
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@
#endif

// Detect std::regex_constants::multiline
#if SCN_STDLIB_LIBCPP || SCN_STDLIB_GLIBCXX >= 11
#if (SCN_STDLIB_LIBCPP && SCN_CLANG >= SCN_COMPILER(15, 0, 0)) || SCN_STDLIB_GLIBCXX > 11 ||(SCN_STDLIB_GLIBCXX == 11 && SCN_GCC_COMPAT_MINOR >= 4)
#define SCN_HAS_STD_REGEX_MULTILINE 1
#else
#define SCN_HAS_STD_REGEX_MULTILINE 0
Expand Down

0 comments on commit 2ff6c93

Please sign in to comment.