Reviewers: Yang, Jakob,

Message:
PTAL. If this looks ok, please commit it as well (I won't be back online for 8
or more hours, and our target bots are whining about this :)

Description:
Fix a -Wsign-compare error under GCC 4.9.2.

BUG=

Please review this at https://codereview.chromium.org/1249703005/

Base URL: https://chromium.googlesource.com/v8/v8.git@master

Affected files (+1, -1 lines):
  M test/cctest/test-api.cc


Index: test/cctest/test-api.cc
diff --git a/test/cctest/test-api.cc b/test/cctest/test-api.cc
index 44d29d103745679535e0eb21ab506bca2ca49bfa..df32722e634e201921c7fbb439c66958ac917d5c 100644
--- a/test/cctest/test-api.cc
+++ b/test/cctest/test-api.cc
@@ -21029,7 +21029,7 @@ TEST(StreamingWithDebuggingEnabledLate) {

   Maybe<uint32_t> result =
       script->Run(env.local()).ToLocalChecked()->Uint32Value(env.local());
-  CHECK_EQ(3, result.FromMaybe(0));
+  CHECK_EQ(3U, result.FromMaybe(0));

   delete[] full_source;



--
--
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.

Reply via email to