From 4ddd96adcb76ea711e536767cbbd4129ed2a25b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Constantin=20F=C3=BCrst?= Date: Wed, 10 Jan 2024 17:57:25 +0100 Subject: [PATCH] remove extra whitespace from output in main function --- offloading-cacher/main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/offloading-cacher/main.cpp b/offloading-cacher/main.cpp index 08640dc..2302493 100644 --- a/offloading-cacher/main.cpp +++ b/offloading-cacher/main.cpp @@ -123,15 +123,15 @@ void RunTestST(const size_t size) { static constexpr int tid = 0; - std::cout << "[" << tid << "] first access --- " << std::endl; + std::cout << "[" << tid << "] first access --- " << std::endl; PerformAccessAndTest(data, size, tid); - std::cout << "[" << tid << "] second access --- " << std::endl; + std::cout << "[" << tid << "] second access --- " << std::endl; PerformAccessAndTest(data, size, tid); - std::cout << "[" << tid << "] end of application --- " << std::endl; + std::cout << "[" << tid << "] end of application --- " << std::endl; } void RunTestMT(const size_t size) {