Status: New
Owner: ----
New issue 2301 by
enerc...@gmail.com: Cant compile without fixing source
http://code.google.com/p/v8/issues/detail?id=2301
Current svn checkout source uncompilable since warnings are treated as
errors. The warning is in line 1149:src/debug.cc which is comparing pointer
with arithmetic 0:
ASSERT(source_position >= 0);
Possible fix will be:
ASSERT(*source_position >= 0);