From cd461a99c634faec99e960820343073c6298d545 Mon Sep 17 00:00:00 2001 From: jackb-p Date: Sun, 31 Jul 2016 22:59:51 +0100 Subject: [PATCH] Revert to c++14 make_unique etc required, implemented as part of c++14 --- TriviaBot/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TriviaBot/CMakeLists.txt b/TriviaBot/CMakeLists.txt index f1b6cf6..d14e50e 100644 --- a/TriviaBot/CMakeLists.txt +++ b/TriviaBot/CMakeLists.txt @@ -15,7 +15,7 @@ file(GLOB_RECURSE sources bot/*.cpp bot/*.hpp) add_executable(TriviaBot ${sources}) # add some compiler flags -set (CMAKE_CXX_FLAGS "-std=c++11 -Wall ${CMAKE_CXX_FLAGS}") +set (CMAKE_CXX_FLAGS "-std=c++14 -Wall ${CMAKE_CXX_FLAGS}") ############################################################################### ## dependencies ###############################################################