summaryrefslogtreecommitdiffstats
path: root/runtime/interpreter/interpreter.cc
diff options
context:
space:
mode:
authorBrian Carlstrom <bdc@google.com>2013-07-18 00:19:45 -0700
committerBrian Carlstrom <bdc@google.com>2013-07-18 11:57:02 -0700
commit3e3d591f781b771de89f3b989830da2b6ac6fac8 (patch)
tree9fc07d9785dd6e008f902ce1a5901df861d59b70 /runtime/interpreter/interpreter.cc
parentdf62950e7a32031b82360c407d46a37b94188fbb (diff)
downloadart-3e3d591f781b771de89f3b989830da2b6ac6fac8.zip
art-3e3d591f781b771de89f3b989830da2b6ac6fac8.tar.gz
art-3e3d591f781b771de89f3b989830da2b6ac6fac8.tar.bz2
Fix cpplint build/namespaces issues
Change-Id: I19c68703270c1482d6c6aad8cdf97d3d2924360a
Diffstat (limited to 'runtime/interpreter/interpreter.cc')
-rw-r--r--runtime/interpreter/interpreter.cc16
1 files changed, 15 insertions, 1 deletions
diff --git a/runtime/interpreter/interpreter.cc b/runtime/interpreter/interpreter.cc
index 376d3be..f624aa4 100644
--- a/runtime/interpreter/interpreter.cc
+++ b/runtime/interpreter/interpreter.cc
@@ -40,7 +40,21 @@
#include "scoped_thread_state_change.h"
#include "thread.h"
-using namespace art::mirror;
+using ::art::mirror::AbstractMethod;
+using ::art::mirror::Array;
+using ::art::mirror::BooleanArray;
+using ::art::mirror::ByteArray;
+using ::art::mirror::CharArray;
+using ::art::mirror::Class;
+using ::art::mirror::ClassLoader;
+using ::art::mirror::Field;
+using ::art::mirror::IntArray;
+using ::art::mirror::LongArray;
+using ::art::mirror::Object;
+using ::art::mirror::ObjectArray;
+using ::art::mirror::ShortArray;
+using ::art::mirror::String;
+using ::art::mirror::Throwable;
namespace art {