From c6e0ce1158536b572b02aad3b579e4f3d0be1db2 Mon Sep 17 00:00:00 2001
From: corentinberge <33965571+corentinberge@users.noreply.github.com>
Date: Mon, 12 Aug 2019 15:32:41 +0200
Subject: [PATCH] Update process-list.cpp

Delete the cout and the include of iostream
---
 src/mt/process-list.cpp | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/src/mt/process-list.cpp b/src/mt/process-list.cpp
index 8920659..711e8dd 100644
--- a/src/mt/process-list.cpp
+++ b/src/mt/process-list.cpp
@@ -2,7 +2,6 @@
  * Author: O. Stasse, 2019
  * See LICENSE file in the root directory of this repository.
  */
-#include <iostream>
 #include <fstream>
 #include <sstream>
 #include <string>
@@ -95,8 +94,7 @@ void CPUData::ProcessLine(std::istringstream &aCPULine)
       percent_ += (double)( softirq_period_)/(double)(total_period_) * 100.0;
       percent_ += (double)( steal_period_)/(double)(total_period_) * 100.0;
       percent_ += (double)( iowait_period_)/(double)(total_period_) * 100.0;
-    }
-  std::cout << cpu_id_ << " " << percent_ << std::endl;  
+    }  
 }
 
 System::System()
-- 
GitLab