only formatting.

This commit is contained in:
Harry Moffat 2004-07-08 18:12:34 +00:00
parent 3edcaa6319
commit 1c41b7c09d

View file

@ -71,12 +71,11 @@ namespace Cantera {
return s; return s;
} }
std::ostream& std::ostream& operator<<(std::ostream& s, const Cantera::Group& g) {
operator<<(std::ostream& s, const Cantera::Group& g) { if (g.valid()) {
if (g.valid()) { s << g.m_comp;
s << g.m_comp; } else {
} else { s << "<none>";
s << "<none>";
} }
return s; return s;
} }