Feature/maybe unused replace dune unused
Merge request reports
Activity
- Resolved by Christoph Grüninger
- Resolved by Christoph Grüninger
I want to get rid of our own macros that suppress unused variable and unused parameter warnings. C++17 provides the attribute
[[maybe_unused]]
and it can be used for both of ourDUNE_UNUSED
andDUNE_UNUSED_PARAM
in a standard fashion without relying on compiler extensions or CMake checks.
But there is a catch: GCC < 9.3 has a bug that marking the first argument of a constructor as maybe unused leads to a crash (bug 81429). Within the core modules, UG grid, typetree, and functions this constellation occurred only once.How should I proceed?
-
Working around the bug as in dune-geometry / dune-geometry!158 (merged). I would add this piece of information to the changelog. It would make the deprecation of the whole header smooth.
-
Only deprecate
DUNE_UNUSED
and leaveDUNE_UNUSED_PARAM
as it is. In this case we cannot have deprecation warnings (possible for headers, not for macros).
We can get rid of the CMake checks after Dune 2.8 either way.
What do you think?
Edited by Christoph Grüninger -
added 33 commits
-
a5b4f7ca...cdf32144 - 31 commits from branch
master
- 5ee4bc18 - Replace DUNE_UNUSED by C++17's [[maybe_unused]]
- f3941816 - Use [[maybe_unused] instead of wrongly used DUNE_UNUSED_PARAMETER
-
a5b4f7ca...cdf32144 - 31 commits from branch
Thinking further about a smooth transition path for
DUNE_UNUSED
I propose the following (extension of option 1):- Deprecate the macro
DUNE_UNUSED
, no warning will be emitted. - After Dune 2.8 we remove the CMake test, thus
HAS_ATTRIBUTE_UNUSED
will be always undefined andDUNE_UNUSED
has no effect. - The used will get a warning for an unused variable and can investigate the problem. There is no guarantee that the user will act, but it increases the chances.
- After Dune 2.9 we remove the macro.
Any objections?
- Deprecate the macro
added 8 commits
-
5de7f0fc...0cab3f48 - 4 commits from branch
master
- c4d37fa5 - Replace DUNE_UNUSED by C++17's [[maybe_unused]]
- acc3cf1a - Use [[maybe_unused] instead of wrongly used DUNE_UNUSED_PARAMETER
- 505db0ab - Deprecate DUNE_UNUSED
- e2a1d550 - Add deprecation warning for DUNE_UNUSED
Toggle commit list-
5de7f0fc...0cab3f48 - 4 commits from branch
mentioned in commit ca9389e1
mentioned in merge request !959 (merged)
mentioned in commit 0291dd6d