diff options
author | Gabe Black <gabeblack@google.com> | 2019-10-28 19:32:47 -0700 |
---|---|---|
committer | Gabe Black <gabeblack@google.com> | 2019-10-30 00:42:07 +0000 |
commit | fa877e19d31203744aecbb252a4f0207dc7491dd (patch) | |
tree | 980cc5e9ce4b5d693a5608ca1ee37a4046fabdf9 /src | |
parent | dd3abb296f9df75aa2eabda1d417c613ecc320f6 (diff) | |
download | gem5-fa877e19d31203744aecbb252a4f0207dc7491dd.tar.xz |
arm: Get rid of using namespace std and TheISA in realview.cc.
Neither was actually used by the nearly empty file.
Change-Id: Ief1b77b18c8c616511bf9870e1667439a42dfcbd
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/22266
Reviewed-by: Giacomo Travaglini <giacomo.travaglini@arm.com>
Maintainer: Giacomo Travaglini <giacomo.travaglini@arm.com>
Tested-by: kokoro <noreply+kokoro@google.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/dev/arm/realview.cc | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/dev/arm/realview.cc b/src/dev/arm/realview.cc index 8524b23c0..381dc6da8 100644 --- a/src/dev/arm/realview.cc +++ b/src/dev/arm/realview.cc @@ -50,14 +50,10 @@ #include <string> #include <vector> -#include "config/the_isa.hh" #include "cpu/intr_control.hh" #include "dev/arm/base_gic.hh" #include "sim/system.hh" -using namespace std; -using namespace TheISA; - RealView::RealView(const Params *p) : Platform(p), system(p->system), gic(nullptr) |