Skip to content
Snippets Groups Projects
Commit 77b87e7c authored by Martin Nolte's avatar Martin Nolte
Browse files

Merge branch 'cherry-pick-62714041' into 'releases/2.6'

Merge branch 'bugfix/dune-version-newer' into 'master'

See merge request core/dune-common!398
parents 0053059b a5b23622
No related branches found
No related tags found
4 merge requests!586Centralize CI config for 2.6 release,!531Update CI for 2.6 release branch,!407[bugfix,2.6] Fix CMake with deactivated compiler version check,!398Merge branch 'bugfix/dune-version-newer' into 'master'
Pipeline #
......@@ -98,7 +98,7 @@
/**
* \brief True if 'module' has the version major.minor or newer
* \note Deprecated, use DUNE_VERSION_GE instead.
* \note Deprecated, use DUNE_VERSION_GTE instead.
*
* For the DUNE core modules you need to use the following module names:
* - DUNE_COMMON for dune-common
......@@ -112,7 +112,7 @@
* need to use FOO_BAR as module name in the context of this macro.
*/
#define DUNE_VERSION_NEWER(module,major,minor) \
! DUNE_VERSION_GTE(module,major,minor)
DUNE_VERSION_GTE(module,major,minor)
/**
* \brief True if 'module' has a version greater than major.minor
......@@ -188,7 +188,7 @@
/**
* \brief True if 'module' has the version major.minor.revision or newer
* \note Deprecated, use DUNE_VERSION_GE_REV instead.
* \note Deprecated, use DUNE_VERSION_GTE_REV instead.
*
* For the DUNE core modules you need to use the following module names:
* - DUNE_COMMON for dune-common
......
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