From 90bb76cb3cf250d54bbfde830baecf0e7dd04cbc Mon Sep 17 00:00:00 2001 From: incredibleLeitman Date: Tue, 6 Oct 2020 16:27:28 +0200 Subject: [PATCH] removed output for readline --- fileHandler.h | 1 - 1 file changed, 1 deletion(-) diff --git a/fileHandler.h b/fileHandler.h index 633f9f9..e4874cd 100644 --- a/fileHandler.h +++ b/fileHandler.h @@ -14,7 +14,6 @@ std::vector readFromFile(const char* filePath) { std::string line; std::getline(in, line); - std::cout << "read line " << line << std::endl; size_t count = std::stoi(line); std::cout << "total: " << count << " elems" << std::endl;