removed test code

This commit is contained in:
incredibleLeitman 2020-10-18 01:30:13 +02:00
parent 0cfd9e66ec
commit 790f389b1f

View File

@ -55,8 +55,6 @@ void Timing::stopRecord(const std::string& name) {
*/ */
void Timing::print(const bool prettyPrint) const { void Timing::print(const bool prettyPrint) const {
std::cout << "--------------------" << std::endl << "Results: " << std::endl << "--------------------" << std::endl; std::cout << "--------------------" << std::endl << "Results: " << std::endl << "--------------------" << std::endl;
std::string blub;
auto it = mResults.begin(); auto it = mResults.begin();
while(it != mResults.end()) { while(it != mResults.end()) {
if (prettyPrint) { if (prettyPrint) {
@ -66,7 +64,6 @@ void Timing::print(const bool prettyPrint) const {
} }
it++; it++;
} }
std::cout << "--------------------" << std::endl; std::cout << "--------------------" << std::endl;
} }