From: Gabe Black Date: Tue, 16 Oct 2018 02:54:28 +0000 (-0700) Subject: dev: Remove using namespace TheISA in uart8250.cc. X-Git-Tag: v19.0.0.0~1476 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ed0a295c59349f8b055d3fe2da8e55838f3a6e7f;p=gem5.git 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 Maintainer: Andreas Sandberg --- 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)