Skip to content
Snippets Groups Projects
Commit 78defc2d authored by Oliver Sander's avatar Oliver Sander
Browse files

print() ist const. Warum auch nicht?

[[Imported from SVN: r971]]
parent 6525060b
No related branches found
No related tags found
No related merge requests found
......@@ -91,7 +91,7 @@ namespace Dune {
}
//! Print matrix content to an output stream
void print (std::ostream& s, int indent)
void print (std::ostream& s, int indent) const
{
for (int k=0; k<indent; k++) s << " ";
s << "Mat [n=" << n << ",m=" << m << "]" << std::endl;
......
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