File tree 5 files changed +6
-6
lines changed
ThirdParty/tclap/include/tclap
5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -436,7 +436,7 @@ endif()
436
436
# ---------------------------------------------------
437
437
438
438
add_library (CADET::CompileOptions INTERFACE IMPORTED )
439
- target_compile_features (CADET::CompileOptions INTERFACE cxx_std_17 )
439
+ target_compile_features (CADET::CompileOptions INTERFACE cxx_std_23 )
440
440
set (CMAKE_CXX_EXTENSIONS OFF )
441
441
442
442
if (WIN32 )
Original file line number Diff line number Diff line change @@ -82,6 +82,6 @@ struct ArgTraits {
82
82
// typedef ValueLike ValueCategory;
83
83
};
84
84
85
- #endif
86
-
87
85
} // namespace
86
+
87
+ #endif
Original file line number Diff line number Diff line change @@ -239,7 +239,7 @@ class MultiArg : public Arg
239
239
/* *
240
240
* Prevent accidental copying
241
241
*/
242
- MultiArg<T> (const MultiArg<T>& rhs);
242
+ MultiArg (const MultiArg<T>& rhs);
243
243
MultiArg<T>& operator =(const MultiArg<T>& rhs);
244
244
245
245
};
Original file line number Diff line number Diff line change @@ -254,7 +254,7 @@ class ValueArg : public Arg
254
254
/* *
255
255
* Prevent accidental copying
256
256
*/
257
- ValueArg<T> (const ValueArg<T>& rhs);
257
+ ValueArg (const ValueArg<T>& rhs);
258
258
ValueArg<T>& operator =(const ValueArg<T>& rhs);
259
259
};
260
260
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ project(CadetBuildTools CXX C)
16
16
# Add the template code generator
17
17
add_executable (templateCodeGen ${CMAKE_SOURCE_DIR} /src/build -tools/templateCodeGen.cpp)
18
18
target_include_directories (templateCodeGen PRIVATE ${CMAKE_SOURCE_DIR} /ThirdParty/json ${CMAKE_SOURCE_DIR} /ThirdParty/inja)
19
- target_compile_features (templateCodeGen PRIVATE cxx_std_14 )
19
+ target_compile_features (templateCodeGen PRIVATE cxx_std_23 )
20
20
set_target_properties (templateCodeGen PROPERTIES CXX_EXTENSIONS OFF )
21
21
22
22
# Info message
You can’t perform that action at this time.
0 commit comments