summaryrefslogtreecommitdiff
path: root/src/mem/ruby/network/fault_model/FaultModel.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/mem/ruby/network/fault_model/FaultModel.cc')
-rw-r--r--src/mem/ruby/network/fault_model/FaultModel.cc7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/mem/ruby/network/fault_model/FaultModel.cc b/src/mem/ruby/network/fault_model/FaultModel.cc
index 195f7c66c..83679984d 100644
--- a/src/mem/ruby/network/fault_model/FaultModel.cc
+++ b/src/mem/ruby/network/fault_model/FaultModel.cc
@@ -37,11 +37,8 @@
* Proceedings of the 48th Design Automation Conference (DAC'11)
*/
-// C includes
-#include <assert.h>
-#include <stdio.h>
-
// C++ includes
+#include <cassert>
#include <fstream>
#include <iostream>
#include <vector>
@@ -50,6 +47,8 @@
#include "FaultModel.hh"
#include "base/misc.hh"
+using namespace std;
+
#define MAX(a,b) ((a > b) ? (a) : (b))