diff options
author | Brian Carlstrom <bdc@google.com> | 2013-07-18 00:19:45 -0700 |
---|---|---|
committer | Brian Carlstrom <bdc@google.com> | 2013-07-18 11:57:02 -0700 |
commit | 3e3d591f781b771de89f3b989830da2b6ac6fac8 (patch) | |
tree | 9fc07d9785dd6e008f902ce1a5901df861d59b70 /compiler/image_writer.cc | |
parent | df62950e7a32031b82360c407d46a37b94188fbb (diff) | |
download | art-3e3d591f781b771de89f3b989830da2b6ac6fac8.tar.gz art-3e3d591f781b771de89f3b989830da2b6ac6fac8.tar.bz2 art-3e3d591f781b771de89f3b989830da2b6ac6fac8.zip |
Fix cpplint build/namespaces issues
Change-Id: I19c68703270c1482d6c6aad8cdf97d3d2924360a
Diffstat (limited to 'compiler/image_writer.cc')
-rw-r--r-- | compiler/image_writer.cc | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/compiler/image_writer.cc b/compiler/image_writer.cc index 7fd1a7cb10..f395428c7d 100644 --- a/compiler/image_writer.cc +++ b/compiler/image_writer.cc @@ -52,7 +52,14 @@ #include "UniquePtr.h" #include "utils.h" -using namespace art::mirror; +using ::art::mirror::AbstractMethod; +using ::art::mirror::Class; +using ::art::mirror::DexCache; +using ::art::mirror::EntryPointFromInterpreter; +using ::art::mirror::Field; +using ::art::mirror::Object; +using ::art::mirror::ObjectArray; +using ::art::mirror::String; namespace art { |