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

Improve deprecation information.

parent fdb5f402
No related branches found
No related tags found
1 merge request!557Improve deprecation information.
Pipeline #67954 passed
......@@ -43,6 +43,9 @@ SPDX-License-Identifier: LicenseRef-GPL-2.0-only-with-DUNE-exception
- Removed deprecated `MultyTypeBlockVector::count()`, use `N()` instead.
- Deprecated `writeSVGMatrix` with `std::stream` as the second argument. Use the method
with `std::stream` as the first argument.
# Release 2.9
......
......@@ -845,9 +845,12 @@ namespace Dune {
* @param mat The matrix to write
* @param out A output stream to write SVG to
* @param opts SVG Options object
*
* \deprecated Use signature where std::stream is the first argument. This
* method will be removed after Dune 2.10.
*/
template <class Mat, class SVGOptions = DefaultSVGMatrixOptions>
[[deprecated("Use signature where std::stream is the first argument.")]]
[[deprecated("Use signature where std::stream is the first argument. This will be removed after Dune 2.10.")]]
void writeSVGMatrix(const Mat &mat, std::ostream &out, SVGOptions opts = {}) {
writeSVGMatrix(out, mat, opts);
}
......
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