Skip to content
Snippets Groups Projects
Commit 9b1d4427 authored by Markus Blatt's avatar Markus Blatt
Browse files

Fixed warnings by adding a proper return statement.

[[Imported from SVN: r889]]
parent 31756bb1
No related branches found
No related tags found
No related merge requests found
......@@ -315,6 +315,7 @@ namespace Dune {
static std::ostream& write(const T& t, std::ostream& s)
{
s<<t;
return s;
}
};
template<typename T>
......@@ -323,6 +324,7 @@ namespace Dune {
static std::ostream& write(const std::complex<T>& t, std::ostream& s)
{
s<<t.real()<<" "<<t.imag();
return s;
}
};
}
......
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