aboutsummaryrefslogtreecommitdiff
path: root/utils/TypePrinter.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/TypePrinter.h')
-rw-r--r--utils/TypePrinter.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/TypePrinter.h b/utils/TypePrinter.h
index e30bdc4157..3ccba2c7e9 100644
--- a/utils/TypePrinter.h
+++ b/utils/TypePrinter.h
@@ -77,7 +77,7 @@ inline ::std::ostream &operator<<(::std::ostream &os, const Dimensions<T> &dimen
for(unsigned int d = 1; d < dimensions.num_dimensions(); ++d)
{
- os << "x" << dimensions[d];
+ os << "," << dimensions[d];
}
}