From 62af55929f632feb846794226727027779542053 Mon Sep 17 00:00:00 2001 From: Volker Fischer Date: Fri, 20 Nov 2015 12:09:16 +0000 Subject: [PATCH] more debug output --- src/util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util.h b/src/util.h index c460fb7c..062ed8f8 100755 --- a/src/util.h +++ b/src/util.h @@ -1176,7 +1176,7 @@ public: for ( int i = 0; i < iNumMeas; i++ ) { // convert ns in ms and store the value - streamFile << static_cast ( vElapsedTimes[i] ) / 1000000 << endl; + streamFile << i << " " << static_cast ( vElapsedTimes[i] ) / 1000000 << endl; } } }