Skip to content
Snippets Groups Projects
Commit 1c550e0e authored by Dr. Felix Tobias Schindler's avatar Dr. Felix Tobias Schindler
Browse files

[cmake] remove DS_OVERRIDE and DS_FINAL

Drop support for override and final keyword discovery since all supported
compiler understand those by now. Further use of DS_OVERRIDE or DS_FINAL
will trigger a compile error.
parent ff6b7336
No related branches found
No related tags found
No related merge requests found
......@@ -71,8 +71,6 @@ Macro(ADD_IF_SUPPORTED dest)
ENDFOREACH(flag ${ARGN})
EndMacro(ADD_IF_SUPPORTED)
include(CheckOverrideFinal)
SET( CMAKE_EXPORT_COMPILE_COMMANDS "ON" )
SET( CMAKE_CXX_FLAGS_RELEASE CACHE STRING
......
......@@ -28,8 +28,8 @@
# define LIKWID_PERFMON 1
#endif
#define DS_OVERRIDE ${DS_OVERRIDE}
#define DS_FINAL ${DS_FINAL}
#define DS_OVERRIDE ; static_assert(false, "Use override instead (21.10.2014)!");
#define DS_FINAL ; static_assert(false, "Use final instead (21.10.2014)!");
#define HAVE_DUNE_FEM_PARAMETER_REPLACE 0
#ifndef HAVE_ALUGRID
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment