diff options
author | Gabe Black <gabeblack@google.com> | 2018-10-15 19:54:28 -0700 |
---|---|---|
committer | Gabe Black <gabeblack@google.com> | 2018-10-17 20:18:29 +0000 |
commit | ed0a295c59349f8b055d3fe2da8e55838f3a6e7f (patch) | |
tree | 977ef2e2ddee8cc29d3c1d6a77a8d18ca80b55c8 | |
parent | 2bcb2b031d4419e87337b25936a09228955dc715 (diff) | |
download | gem5-ed0a295c59349f8b055d3fe2da8e55838f3a6e7f.tar.xz |
dev: Remove using namespace TheISA in uart8250.cc.
Nothing in that file is in the TheISA namespace, so there's no reason
to use using on it.
Change-Id: I279c27af86509f75ac4e340956381041a0dbcdc4
Reviewed-on: https://gem5-review.googlesource.com/c/13537
Reviewed-by: Andreas Sandberg <andreas.sandberg@arm.com>
Maintainer: Andreas Sandberg <andreas.sandberg@arm.com>
-rw-r--r-- | src/dev/serial/uart8250.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/dev/serial/uart8250.cc b/src/dev/serial/uart8250.cc index 6b0d01980..41ae3bd81 100644 --- a/src/dev/serial/uart8250.cc +++ b/src/dev/serial/uart8250.cc @@ -46,7 +46,6 @@ #include "mem/packet_access.hh" using namespace std; -using namespace TheISA; void Uart8250::processIntrEvent(int intrBit) |