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

mark the spurious 'revision' argument as deprecated

[[Imported from SVN: r6423]]
parent 3d18e1bf
Branches master
No related tags found
No related merge requests found
......@@ -23,7 +23,9 @@
( DUNE_VERSION_EQUAL(module,major,minor) && \
(DUNE_VERSION_JOIN(module,REVISION) == revision))
/** \brief True if 'module' has the version major.minor or newer */
/** \brief True if 'module' has the version major.minor or newer
\deprecated The 'revision' argument, only here by error, will be removed in the next release!
*/
#define DUNE_VERSION_NEWER(module,major,minor,revision) \
((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