comment: fix comment regarding gcc 4.8/4.9

This commit is contained in:
Patrick Boettcher 2018-01-19 09:39:07 +01:00
parent dda72a0023
commit b1b5cb891c

View File

@ -51,7 +51,7 @@ target_compile_definitions(json-schema-validator
PRIVATE
-DJSON_SCHEMA_VALIDATOR_EXPORTS)
# regex with boost if gcc < 4.8 - default is std::regex
# regex with boost if gcc < 4.9 - default is std::regex
if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS "4.9.0")
find_package(Boost COMPONENTS regex)