summaryrefslogtreecommitdiff
path: root/src/tuning/tuning.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/tuning/tuning.hpp')
-rw-r--r--src/tuning/tuning.hpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/tuning/tuning.hpp b/src/tuning/tuning.hpp
index 22210c7d..ee7e0087 100644
--- a/src/tuning/tuning.hpp
+++ b/src/tuning/tuning.hpp
@@ -20,7 +20,6 @@
#include <random>
#include <utility>
#include <algorithm>
-#include <iostream>
#include <chrono>
#include <functional>
@@ -32,21 +31,6 @@
namespace clblast {
// =================================================================================================
-// Constants holding start and end strings for terminal-output in colour
-#if defined(_WIN32)
- const std::string kPrintError = "";
- const std::string kPrintSuccess = "";
- const std::string kPrintMessage = "";
- const std::string kPrintEnd = "";
-#else
- const std::string kPrintError = "\x1b[31m";
- const std::string kPrintSuccess = "\x1b[32m";
- const std::string kPrintMessage = "\x1b[1m";
- const std::string kPrintEnd = "\x1b[0m";
-#endif
-
-// =================================================================================================
-
// Structures for the tuners with all the default settings
struct TunerDefaults {