Skip to content
Snippets Groups Projects
Commit 852b7ce0 authored by Oliver Sander's avatar Oliver Sander
Browse files

remove macro argument 'revision' of macro DUNE_VERSION_NEWER, because it is not used

[[Imported from SVN: r6422]]
parent b5dbc747
No related branches found
No related tags found
No related merge requests found
......@@ -24,7 +24,7 @@
(DUNE_VERSION_JOIN(module,REVISION) == revision))
/** \brief True if 'module' has the version major.minor or newer */
#define DUNE_VERSION_NEWER(module,major,minor,revision) \
#define DUNE_VERSION_NEWER(module,major,minor) \
((DUNE_VERSION_JOIN(module,MAJOR) > major) \
|| ((DUNE_VERSION_JOIN(module,MAJOR) == major) && (DUNE_VERSION_JOIN(module,MINOR) >= minor)))
......
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