exclude clang from checking

This commit is contained in:
Miodrag Milanovic 2020-03-13 17:23:27 +01:00
parent 8f221118d2
commit 395daf6ced
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@
// In GCC 4.8 std::regex is not working correctlty, in order to make features
// using regular expressions to work replacement regex library is used
#if defined(__GNUC__) && ( __GNUC__ == 4 && __GNUC_MINOR__ <= 8)
#if defined(__GNUC__) && !defined( __clang__) && ( __GNUC__ == 4 && __GNUC_MINOR__ <= 8)
#include <boost/xpressive/xpressive.hpp>
#define YS_REGEX_TYPE boost::xpressive::sregex
#define YS_REGEX_NS boost::xpressive