aboutsummaryrefslogtreecommitdiff
path: root/Carpet/Requirements
diff options
context:
space:
mode:
authorErik Schnetter <schnetter@gmail.com>2013-04-04 14:29:56 -0400
committerErik Schnetter <schnetter@gmail.com>2013-04-04 14:29:56 -0400
commit7b51f697d3a18ce75c8e00ee275a1f43e8a8b785 (patch)
tree7c8bb5009a901e7841f7a4bc589265fef093260b /Carpet/Requirements
parentfa4a45f97db33dff241b1d04cfc33d21ccf4f024 (diff)
Requirements: Change location output format
Treat iteration number as part of "location".
Diffstat (limited to 'Carpet/Requirements')
-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 << "]";
}
}