Reviewers: machenbach,
Message:
Committed patchset #1 manually as r16399.
Description:
Fix Visual Studio debug build after r16398.
[email protected]
Committed: https://code.google.com/p/v8/source/detail?r=16399
Please review this at https://codereview.chromium.org/23624006/
SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge
Affected files:
M src/platform/time.cc
Index: src/platform/time.cc
diff --git a/src/platform/time.cc b/src/platform/time.cc
index
70f3202a199e77e34f00a02556b93bc830f1893b..a1b308a7074f8bc00e94dd46aaeed3a49d1efac5
100644
--- a/src/platform/time.cc
+++ b/src/platform/time.cc
@@ -338,7 +338,7 @@ class HighResolutionTickClock V8_FINAL : public
TickClock {
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.