diff options
author | Duane Sand <duane.sand@imgtec.com> | 2015-05-05 14:48:43 -0700 |
---|---|---|
committer | Duane Sand <duane.sand@imgtec.com> | 2015-05-05 15:24:47 -0700 |
commit | e7755e7dc914ab8c052477090918d89f38f87588 (patch) | |
tree | 81f0e5a4191cb641a403fcb294e5ba7924299067 /runtime/arch | |
parent | d864f5010de581b15cea1e8178871e658024a6d9 (diff) | |
download | art-e7755e7dc914ab8c052477090918d89f38f87588.zip art-e7755e7dc914ab8c052477090918d89f38f87588.tar.gz art-e7755e7dc914ab8c052477090918d89f38f87588.tar.bz2 |
Fix Mips64 utils.h typo
Include of art's utils.h was mistyped as util.h, and instead
brought in external/icu/icu4c/source/common/util.h,
which caused art build failures from -Wdeprecated warnings
when Mips64 libart is compiled with clang.
Change-Id: I9370c4dc041eaecc5d5a1490ec23034ece4322a9
Diffstat (limited to 'runtime/arch')
-rw-r--r-- | runtime/arch/mips64/context_mips64.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/arch/mips64/context_mips64.cc b/runtime/arch/mips64/context_mips64.cc index ce99b40..6b3f4c9 100644 --- a/runtime/arch/mips64/context_mips64.cc +++ b/runtime/arch/mips64/context_mips64.cc @@ -18,7 +18,7 @@ #include "mirror/art_method-inl.h" #include "quick/quick_method_frame_info.h" -#include "util.h" +#include "utils.h" namespace art { namespace mips64 { |