summaryrefslogtreecommitdiffstats
path: root/compiler/dex/quick/quick_compiler.cc
diff options
context:
space:
mode:
authorAndreas Gampe <agampe@google.com>2014-09-29 20:07:43 -0700
committerAndreas Gampe <agampe@google.com>2014-09-29 20:13:48 -0700
commitc8ccf68b805c92674545f63e0341ba47e8d9701c (patch)
treefb360323538cb242ebf7c5c0aca27d3a0bce0abb /compiler/dex/quick/quick_compiler.cc
parentfcabfbe577c0fd40910b565beb681bd4b66f6c5d (diff)
downloadart-c8ccf68b805c92674545f63e0341ba47e8d9701c.tar.gz
art-c8ccf68b805c92674545f63e0341ba47e8d9701c.tar.bz2
art-c8ccf68b805c92674545f63e0341ba47e8d9701c.zip
ART: Fix some -Wpedantic errors
Remove extra semicolons. Dollar signs in C++ identifiers are an extension. Named variadic macros are an extension. Binary literals are a C++14 feature. Enum re-declarations are not allowed. Overflow. Change-Id: I7d16b2217b2ef2959ca69de84eaecc754517714a
Diffstat (limited to 'compiler/dex/quick/quick_compiler.cc')
-rw-r--r--compiler/dex/quick/quick_compiler.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/dex/quick/quick_compiler.cc b/compiler/dex/quick/quick_compiler.cc
index 2c5f79c29a..6f2a647313 100644
--- a/compiler/dex/quick/quick_compiler.cc
+++ b/compiler/dex/quick/quick_compiler.cc
@@ -489,7 +489,7 @@ static bool CanCompileShorty(const char* shorty, InstructionSet instruction_set)
}
}
return true;
-};
+}
// Skip the method that we do not support currently.
bool QuickCompiler::CanCompileMethod(uint32_t method_idx, const DexFile& dex_file,