Skip to content
Snippets Groups Projects
Commit 18a30956 authored by Robert Klöfkorn's avatar Robert Klöfkorn
Browse files

changed signature of print.

[[Imported from SVN: r2918]]
parent 5dd9944c
Branches
Tags
No related merge requests found
......@@ -178,7 +178,7 @@ namespace Dune {
}
//! pretty print this Quadrature to ostream s
void print (std::ostream& s, int indent) const
void print (std::ostream& s) const
{
double sum = 0.0;
s << "quad (id = " << asImp().getIdentifier() <<") { \n" ;
......@@ -204,7 +204,7 @@ namespace Dune {
inline std::ostream& operator<< (std::ostream& s,
QuadratureDefault<RangeFieldType,DomainType,QuadratureImp>& quad)
{
quad.print(s,0);
quad.print(s);
return s;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment