Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/deps
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2011-07-16 16:51:45 +0400
committerBen Noordhuis <info@bnoordhuis.nl>2011-07-16 16:51:45 +0400
commit61dfe5d2a9f613e3826997efa189ec8dd239aacf (patch)
treeb2d896fb3b9165e1e398923d5c8d5ef85612216d /deps
parent292345fe626bc4185e8bb1c41bf3f859f48b3bd4 (diff)
Revert dcf6955: Fix V8 mingw32 build
Patch has been merged upstream in V8 3.4.6. Fixes #1351.
Diffstat (limited to 'deps')
-rw-r--r--deps/v8/src/platform-win32.cc9
1 files changed, 0 insertions, 9 deletions
diff --git a/deps/v8/src/platform-win32.cc b/deps/v8/src/platform-win32.cc
index 2a30046e021..35b1a8ecedf 100644
--- a/deps/v8/src/platform-win32.cc
+++ b/deps/v8/src/platform-win32.cc
@@ -118,15 +118,6 @@ int strncasecmp(const char* s1, const char* s2, int n) {
// the Microsoft Visual Studio C++ CRT.
#ifdef __MINGW32__
-namespace v8 {
-namespace internal {
-
-intptr_t OS::MaxVirtualMemory() {
- return 0;
-}
-}
-}
-
int localtime_s(tm* out_tm, const time_t* time) {
tm* posix_local_time_struct = localtime(time);
if (posix_local_time_struct == NULL) return 1;