Skip to content
Snippets Groups Projects
Commit 74c7caa7 authored by Christoph Grüninger's avatar Christoph Grüninger Committed by Timo Koch
Browse files

[solverregistry] Fix superfluous semicolon warning

parent f70d30c3
No related branches found
No related tags found
1 merge request!2134WIP Feature/timestepper test
...@@ -35,11 +35,16 @@ ...@@ -35,11 +35,16 @@
* DUMUX_REGISTER_PRECONDITIONER("mypreconditioner", Dumux::MultiTypeBlockMatrixPreconditionerTag, Dune::defaultPreconditionerBlockLevelCreator<Dumux::MyPreconditioner, 1>()); * DUMUX_REGISTER_PRECONDITIONER("mypreconditioner", Dumux::MultiTypeBlockMatrixPreconditionerTag, Dune::defaultPreconditionerBlockLevelCreator<Dumux::MyPreconditioner, 1>());
* Expicitly specifying the namespaces is required. * Expicitly specifying the namespaces is required.
* Set parameter Preconditioner.Type to "mypreconditioner" to use it through the factory. * Set parameter Preconditioner.Type to "mypreconditioner" to use it through the factory.
*
* In the macro implementation, the final static_assert forces implementers
* to put a semicolon after every DUMUX_REGISTER_PRECONDITIONER macro call (cf. example)
* and avoids a compiler warning for an empty line semicolon at the same time
*/ */
#define DUMUX_REGISTER_PRECONDITIONER(name, tag, ...) \ #define DUMUX_REGISTER_PRECONDITIONER(name, tag, ...) \
} namespace Dune { \ } namespace Dune { \
DUNE_REGISTRY_PUT(tag, name, __VA_ARGS__); \ DUNE_REGISTRY_PUT(tag, name, __VA_ARGS__); \
} namespace Dumux { \ } namespace Dumux { \
static_assert(true, "Require semicolon after macro call")
namespace Dumux { namespace Dumux {
namespace { namespace {
......
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