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