Skip to content

Commit

Permalink
-std=c++11 to -std=c++0x
Browse files Browse the repository at this point in the history
  • Loading branch information
endyul committed Oct 18, 2015
1 parent 825564a commit 1954e4a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ set (CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake)

if (APPLE)
add_definitions(-DGTEST_HAS_TR1_TUPLE=0)
set(CMAKE_CXX_FLAGS "-std=c++11 -Wno-c++11-narrowing")
set(CMAKE_CXX_FLAGS "-std=c++0x -Wno-c++11-narrowing")
else()
set(CMAKE_CXX_FLAGS "-std=c++11")
set(CMAKE_CXX_FLAGS "-std=c++0x")
endif(APPLE)


Expand Down

0 comments on commit 1954e4a

Please sign in to comment.