summaryrefslogtreecommitdiffstats
path: root/compiler/dex/dex_to_dex_compiler.cc
diff options
context:
space:
mode:
authorBrian Carlstrom <bdc@google.com>2013-07-19 11:24:45 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2013-07-19 11:24:45 -0700
commitd0b495921acbe890892eddd6a7b055acee3d6505 (patch)
tree4cb75f21a6ffbefe7894c08f70dfe45d59cc45cc /compiler/dex/dex_to_dex_compiler.cc
parentfbf49d27f4a4e74c5901899a1c4879946b7bdf4e (diff)
parent9b7085a4e7c40e7fa01932ea1647a4a33ac1c585 (diff)
downloadandroid_art-d0b495921acbe890892eddd6a7b055acee3d6505.tar.gz
android_art-d0b495921acbe890892eddd6a7b055acee3d6505.tar.bz2
android_art-d0b495921acbe890892eddd6a7b055acee3d6505.zip
am 9b7085a4: Fix cpplint readability/braces issues
* commit '9b7085a4e7c40e7fa01932ea1647a4a33ac1c585': Fix cpplint readability/braces issues
Diffstat (limited to 'compiler/dex/dex_to_dex_compiler.cc')
-rw-r--r--compiler/dex/dex_to_dex_compiler.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/dex/dex_to_dex_compiler.cc b/compiler/dex/dex_to_dex_compiler.cc
index 4419fed9c5..28c325726e 100644
--- a/compiler/dex/dex_to_dex_compiler.cc
+++ b/compiler/dex/dex_to_dex_compiler.cc
@@ -38,9 +38,9 @@ class DexCompiler {
DexCompiler(art::CompilerDriver& compiler,
const DexCompilationUnit& unit)
: driver_(compiler),
- unit_(unit) {};
+ unit_(unit) {}
- ~DexCompiler() {};
+ ~DexCompiler() {}
void Compile();