Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-istl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Core Modules
dune-istl
Commits
338462bb
Commit
338462bb
authored
1 year ago
by
Santiago Ospina De Los Ríos
Browse files
Options
Downloads
Plain Diff
Merge branch 'feature/improve-deprecation-information' into 'master'
Improve deprecation information. See merge request
!557
parents
fdb5f402
9e2db714
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!557
Improve deprecation information.
Pipeline
#67957
passed
1 year ago
Stage: .pre
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG.md
+3
-0
3 additions, 0 deletions
CHANGELOG.md
dune/istl/io.hh
+4
-1
4 additions, 1 deletion
dune/istl/io.hh
with
7 additions
and
1 deletion
CHANGELOG.md
+
3
−
0
View file @
338462bb
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
dune/istl/io.hh
+
4
−
1
View file @
338462bb
...
...
@@ -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
);
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment