exclude clang from checking
authorMiodrag Milanovic <mmicko@gmail.com>
Fri, 13 Mar 2020 16:23:27 +0000 (17:23 +0100)
committerMiodrag Milanovic <mmicko@gmail.com>
Fri, 13 Mar 2020 16:23:27 +0000 (17:23 +0100)
kernel/log.h

index 61cc246e79fc10f6641c95ba4ca9894db77f133e..cd0e8185c4aa23c91fa4caddb1f20b74dd5f4552 100644 (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