summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2019-09-12 19:01:42 (GMT)
committerGitHub <noreply@github.com>2019-09-12 19:01:42 (GMT)
commitec86b8878c23c7ff4024c365afefb8b14311596e (patch)
tree17db372317dc1145a56e16bb871ca356dc023897
parent4ba2c6e68a9acc527d5ce26d367879667e805e07 (diff)
parent64f1f2357ae764f2c8190d067aff801bc0a56721 (diff)
downloadDoxygen-ec86b8878c23c7ff4024c365afefb8b14311596e.zip
Doxygen-ec86b8878c23c7ff4024c365afefb8b14311596e.tar.gz
Doxygen-ec86b8878c23c7ff4024c365afefb8b14311596e.tar.bz2
Merge pull request #7252 from ericniebler/patch-1
Latest libclang needs C++14
-rw-r--r--CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 7aa1c01..2644ceb 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -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)