diff options
author | 2012-01-24 20:25:24 -0800 | |
---|---|---|
committer | 2012-01-24 20:25:24 -0800 | |
commit | ba8eee10607a524f43b55a6f33c13924fb16d435 (patch) | |
tree | 45f3c3728bcaee9ff04baeaf1706693e677757bf /src/compiler.cc | |
parent | 844f9a072454eb9dca1022299b6bf99ef4294008 (diff) |
Remove more lint.
Change-Id: I48714db4169d9ea0536342809361210910ee2091
Diffstat (limited to 'src/compiler.cc')
-rw-r--r-- | src/compiler.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/compiler.cc b/src/compiler.cc index 137f2424ca..647a8edc9a 100644 --- a/src/compiler.cc +++ b/src/compiler.cc @@ -74,7 +74,7 @@ ByteArray* Compiler::CreateJniDlsymLookupStub(InstructionSet instruction_set) { case kX86: return x86::CreateJniDlsymLookupStub(); default: - LOG(FATAL) << "Unknown InstructionSet " << (int) instruction_set; + LOG(FATAL) << "Unknown InstructionSet: " << static_cast<int>(instruction_set); return NULL; } } @@ -338,7 +338,6 @@ void Compiler::InitializeClassesWithoutClinit(const ClassLoader* class_loader, c } // clear any class not found or verification exceptions Thread::Current()->ClearException(); - } DexCache* dex_cache = class_linker->FindDexCache(dex_file); |