From 790f389b1f08648db9328f3c6324811adad5c772 Mon Sep 17 00:00:00 2001 From: incredibleLeitman Date: Sun, 18 Oct 2020 01:30:13 +0200 Subject: [PATCH] removed test code --- Timing.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/Timing.cpp b/Timing.cpp index 58546b2..1d4f5a6 100644 --- a/Timing.cpp +++ b/Timing.cpp @@ -55,8 +55,6 @@ void Timing::stopRecord(const std::string& name) { */ void Timing::print(const bool prettyPrint) const { std::cout << "--------------------" << std::endl << "Results: " << std::endl << "--------------------" << std::endl; - - std::string blub; auto it = mResults.begin(); while(it != mResults.end()) { if (prettyPrint) { @@ -66,7 +64,6 @@ void Timing::print(const bool prettyPrint) const { } it++; } - std::cout << "--------------------" << std::endl; }