Reviewers: Rico, Description: Fix Windows compile
Please review this at http://codereview.chromium.org/6260014/ SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M src/platform-win32.cc Index: src/platform-win32.cc =================================================================== --- src/platform-win32.cc (revision 6412) +++ src/platform-win32.cc (working copy) @@ -671,7 +671,7 @@ bool OS::Remove(const char* path) { - return (DeleteFile(path) != 0); + return (DeleteFileA(path) != 0); } -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
