aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Carpet/Requirements/src/location.cc9
1 files changed, 5 insertions, 4 deletions
diff --git a/Carpet/Requirements/src/location.cc b/Carpet/Requirements/src/location.cc
index 1f0249764..47f0ccfe3 100644
--- a/Carpet/Requirements/src/location.cc
+++ b/Carpet/Requirements/src/location.cc
@@ -6,9 +6,10 @@ namespace Requirements {
void location_t::output(ostream& os) const
{
- os << "vi:" << vi << ",it:" << it << ", ";
- os << "[rl:" << rl << ",";
- os << "tl:" << tl << ",";
- os << "m:" << m << "]";
+ os << "vi:" << vi << ", ["
+ << "it:" << it << ","
+ << "rl:" << rl << ","
+ << "tl:" << tl << ","
+ << "m:" << m << "]";
}
}