commit | 1a12858eb15a14788478c4aca82c052bc84fcafa | [log] [tgz] |
---|---|---|
author | Mingyao Yang <mingyao@google.com> | Tue Jul 22 17:33:25 2014 -0700 |
committer | Mingyao Yang <mingyao@google.com> | Tue Jul 22 17:33:25 2014 -0700 |
tree | e92621389f007ef74cd42ea91e920cfb98d2a980 | |
parent | ddc211980aa2f6149905d8d26f67201ac8e400b3 [diff] |
Fix build, missing spaces around =/<. Change-Id: I2e7824075626a07eccb0a5eb77ef157214fe70fb
diff --git a/runtime/class_linker.cc b/runtime/class_linker.cc index d1c158b..7f89156 100644 --- a/runtime/class_linker.cc +++ b/runtime/class_linker.cc
@@ -4128,7 +4128,7 @@ return false; } int len = super_class->GetVTableLength(); - for (int i=0; i<len; i++) { + for (int i = 0; i < len; i++) { vtable->Set<false>(i, super_class->GetVTableEntry(i)); } } else {