From df9d7f0660314788a8b681245d59ae87cdcefbd9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Me=C3=9Fmer?= Date: Fri, 16 Oct 2015 03:17:50 +0200 Subject: [PATCH] Remove debug output --- random/RandomGeneratorThread.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/random/RandomGeneratorThread.cpp b/random/RandomGeneratorThread.cpp index 524d74ca..671fd692 100644 --- a/random/RandomGeneratorThread.cpp +++ b/random/RandomGeneratorThread.cpp @@ -16,11 +16,9 @@ namespace cpputils { } Data RandomGeneratorThread::_generateRandomData(size_t size) { - std::cout << "Generate " << static_cast(size)/1024 << " KB" << std::endl; Data newRandom(size); _randomGenerator.GenerateBlock(static_cast(newRandom.data()), size); - std::cout << "Generate " << static_cast(size)/1024 << " KB done" << std::endl; return newRandom; } -} \ No newline at end of file +}