diff options
author | 2018-11-28 17:54:54 -0800 | |
---|---|---|
committer | 2018-11-28 17:54:54 -0800 | |
commit | 055fb139b69ffa7c97362bfff10c60fe6f2f4bd1 (patch) | |
tree | 699af3838cb37aa85c7e938e7e3104cbe2edbd34 | |
parent | a9f861bd83117931b7c5d679038770489bc16155 (diff) |
C++17 compatibility: remove unreachable return.
Bug: http://b/111067277
Test: builds
Change-Id: If6c3a4add1721067965e19599a7649cc21b55619
-rw-r--r-- | runtime/dex_to_dex_decompiler.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/runtime/dex_to_dex_decompiler.cc b/runtime/dex_to_dex_decompiler.cc index a5248e67f1..aff9b47a79 100644 --- a/runtime/dex_to_dex_decompiler.cc +++ b/runtime/dex_to_dex_decompiler.cc @@ -187,7 +187,6 @@ bool DexDecompiler::Decompile() { LOG(FATAL) << "Failed to use all values in quickening info." << " Actual: " << std::hex << quicken_index_ << " Expected: " << quicken_info_.NumIndices(); - return false; } } |