Revision: 21686
Author: [email protected]
Date: Thu Jun 5 08:41:29 2014 UTC
Log: Fix presubmit style error in parser.cc
BUG=
[email protected]
Review URL: https://codereview.chromium.org/315003007
http://code.google.com/p/v8/source/detail?r=21686
Modified:
/branches/bleeding_edge/src/parser.cc
=======================================
--- /branches/bleeding_edge/src/parser.cc Thu Jun 5 07:33:01 2014 UTC
+++ /branches/bleeding_edge/src/parser.cc Thu Jun 5 08:41:29 2014 UTC
@@ -2287,11 +2287,13 @@
static bool ContainsLabel(ZoneStringList* labels, Handle<String> label) {
ASSERT(!label.is_null());
- if (labels != NULL)
- for (int i = labels->length(); i-- > 0; )
- if (labels->at(i).is_identical_to(label))
+ if (labels != NULL) {
+ for (int i = labels->length(); i-- > 0; ) {
+ if (labels->at(i).is_identical_to(label)) {
return true;
-
+ }
+ }
+ }
return false;
}
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.