-
Notifications
You must be signed in to change notification settings - Fork 65
Closed
Description
Replace the -std=c++14
here
Line 98 in 8959c59
set(FLAGS "${FLAGS} --std=c++14 -Wall -Wextra -Wpedantic -Werror -Wno-extra-semi -Werror=unused-parameter -Wno-error=deprecated-declarations") |
with
set(CMAKE_CXX_STANDARD 14)
.
Tagging with CGNS as that code requires C++14:
Lines 40 to 42 in 8959c59
if(ENABLE_CGNS) #takes precedence over SCOREC_ENABLE_CXX11 | |
message(STATUS "enabling cxx14") | |
bob_cxx14_flags() |