Skip to content

Commit

Permalink
Latest libclang needs C++14
Browse files Browse the repository at this point in the history
  • Loading branch information
ericniebler committed Sep 10, 2019
1 parent 81da20f commit 64f1f23
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 @@ -49,8 +49,8 @@ if (use_libclang)
endif()
endif()

# use C++11 standard for compiling (libclang option requires it)
set(CMAKE_CXX_STANDARD 11)
# use C++14 standard for compiling (libclang option requires it)
set(CMAKE_CXX_STANDARD 14)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS ON)

Expand Down

0 comments on commit 64f1f23

Please sign in to comment.