From 54523369a3096750dac18f2150a23d6d98709030 Mon Sep 17 00:00:00 2001 From: Bartosz Kostrzewa Date: Mon, 31 Aug 2020 19:39:36 +0200 Subject: [PATCH] do not use backspace in Coordinate output stream operator --- Grid/util/Coordinate.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Grid/util/Coordinate.h b/Grid/util/Coordinate.h index 7f1d31c0..004fbc72 100644 --- a/Grid/util/Coordinate.h +++ b/Grid/util/Coordinate.h @@ -99,10 +99,10 @@ inline std::ostream & operator<<(std::ostream &os, const AcceleratorVector 0) { - os << "\b"; + os << v[s]; + if( s < (v.size()-1) ){ + os << " "; + } } os << "]"; return os;