From ceedf4b996bcbcd4e3d0e3cbbfb206cc642d1422 Mon Sep 17 00:00:00 2001 From: jackb-p Date: Sun, 31 Jul 2016 21:49:44 +0100 Subject: [PATCH] Try downgrading to c++11 --- TriviaBot/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TriviaBot/CMakeLists.txt b/TriviaBot/CMakeLists.txt index 796c160..f1b6cf6 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++14 -Wall -Wfloat-conversion ${CMAKE_CXX_FLAGS}") +set (CMAKE_CXX_FLAGS "-std=c++11 -Wall ${CMAKE_CXX_FLAGS}") ############################################################################### ## dependencies ###############################################################