LGTM with a style comment:

In the V8 code base we always have explicit check against NULL, so

  while (HeapObject* obj = it.next()) {

needs to be

  while ((HeapObject* obj = it.next()) != NULL) {


http://codereview.chromium.org/555072

--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to