From b1b5cb891c9a1ae3c0fca2c918330d18ad6089db Mon Sep 17 00:00:00 2001 From: Patrick Boettcher Date: Fri, 19 Jan 2018 09:39:07 +0100 Subject: [PATCH] comment: fix comment regarding gcc 4.8/4.9 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4159112..b240551 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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)