diff options
author | Brian Carlstrom <bdc@google.com> | 2013-07-18 15:15:21 -0700 |
---|---|---|
committer | Brian Carlstrom <bdc@google.com> | 2013-07-18 15:27:37 -0700 |
commit | 9b7085a4e7c40e7fa01932ea1647a4a33ac1c585 (patch) | |
tree | 629bf8e99c0b898927b8808e3265e69abad4212c /compiler/dex/dex_to_dex_compiler.cc | |
parent | 50af979315413e7941ee553ad69c7ccc7d984621 (diff) | |
download | android_art-9b7085a4e7c40e7fa01932ea1647a4a33ac1c585.tar.gz android_art-9b7085a4e7c40e7fa01932ea1647a4a33ac1c585.tar.bz2 android_art-9b7085a4e7c40e7fa01932ea1647a4a33ac1c585.zip |
Fix cpplint readability/braces issues
Change-Id: I56b88956510077b0e13aad4caee8898313fab55b
Diffstat (limited to 'compiler/dex/dex_to_dex_compiler.cc')
-rw-r--r-- | compiler/dex/dex_to_dex_compiler.cc | 4 |
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 ee68a5dc85..ab27838d7c 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(); |