Revision: 16399
Author:   [email protected]
Date:     Wed Aug 28 13:36:28 2013 UTC
Log:      Fix Visual Studio debug build after r16398.

[email protected]

Review URL: https://codereview.chromium.org/23624006
http://code.google.com/p/v8/source/detail?r=16399

Modified:
 /branches/bleeding_edge/src/platform/time.cc

=======================================
--- /branches/bleeding_edge/src/platform/time.cc Wed Aug 28 13:03:06 2013 UTC +++ /branches/bleeding_edge/src/platform/time.cc Wed Aug 28 13:36:28 2013 UTC
@@ -338,7 +338,7 @@
  public:
   explicit HighResolutionTickClock(int64_t ticks_per_second)
       : ticks_per_second_(ticks_per_second) {
-    ASSERT_NE(0, ticks_per_second);
+    ASSERT_LT(0, ticks_per_second);
   }
   virtual ~HighResolutionTickClock() {}

--
--
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/groups/opt_out.

Reply via email to