Skip to content
Snippets Groups Projects
Commit 30444b2a authored by Christoph Grüninger's avatar Christoph Grüninger
Browse files

[parallel] Remove deprecated support for handles with fixedsize()

parent 6d883f48
No related branches found
No related tags found
1 merge request!1076Remove deprecated code parts or properly deprecate parts that were meant for removal
......@@ -44,6 +44,9 @@
replacement, as it must be sometimes placed at a different position
in the code.
- In `callFixedSize`, support handles with `fixedsize()` (lower case s)
is removed. Implement `fixedSize()` (camelCase) instead.
- `CollectiveCommunication` and `getCollectiveCommunication` are deprecated
and will be removed after Dune 2.9. Use `Communication` respectively
`getCommunication` instead.
......
......@@ -52,15 +52,6 @@ constexpr bool callFixedSize(H &&handle) {
return handle.fixedSize();
}
template <typename H,
std::enable_if_t<not models<Concept::HasFixedSize, H>(), int> = 0>
[[deprecated("Using handles with fixedsize() (lower case s) is deprecated and "
"will be removed after release 2.8. Implement fixedSize() "
"(camelCase) instead!")]]
constexpr bool callFixedSize(H &&handle) {
return handle.fixedsize();
}
} // namespace Impl
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