summaryrefslogtreecommitdiffstats
path: root/runtime/runtime.cc
diff options
context:
space:
mode:
authorBrian Carlstrom <bdc@google.com>2013-07-17 17:44:30 -0700
committerBrian Carlstrom <bdc@google.com>2013-07-17 21:46:11 -0700
commit2ce745c06271d5223d57dbf08117b20d5b60694a (patch)
tree08ca327d1f1c8266fafb11422cfad6982f21e0bb /runtime/runtime.cc
parentfc0e3219edc9a5bf81b166e82fd5db2796eb6a0d (diff)
downloadandroid_art-2ce745c06271d5223d57dbf08117b20d5b60694a.tar.gz
android_art-2ce745c06271d5223d57dbf08117b20d5b60694a.tar.bz2
android_art-2ce745c06271d5223d57dbf08117b20d5b60694a.zip
Fix cpplint whitespace/braces issues
Change-Id: Ide80939faf8e8690d8842dde8133902ac725ed1a
Diffstat (limited to 'runtime/runtime.cc')
-rw-r--r--runtime/runtime.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/runtime.cc b/runtime/runtime.cc
index e5fb46fa5b..14d4c8a592 100644
--- a/runtime/runtime.cc
+++ b/runtime/runtime.cc
@@ -566,7 +566,7 @@ Runtime::ParsedOptions* Runtime::ParsedOptions::Create(const Options& options, b
Trace::SetDefaultClockSource(kProfilerClockSourceDual);
} else if (option == "-small") {
parsed->small_mode_ = true;
- }else if (option == "-sea_ir") {
+ } else if (option == "-sea_ir") {
parsed->sea_ir_mode_ = true;
} else if (StartsWith(option, "-small-mode-methods-max:")) {
parsed->small_mode_method_threshold_ = ParseIntegerOrDie(option);