Revision: 23618
Author:   [email protected]
Date:     Tue Sep  2 13:40:01 2014 UTC
Log:      Fix windows build.

[email protected]

Review URL: https://codereview.chromium.org/528993003
https://code.google.com/p/v8/source/detail?r=23618

Modified:
 /branches/bleeding_edge/src/base/platform/platform-win32.cc

=======================================
--- /branches/bleeding_edge/src/base/platform/platform-win32.cc Wed Aug 27 08:29:22 2014 UTC +++ /branches/bleeding_edge/src/base/platform/platform-win32.cc Tue Sep 2 13:40:01 2014 UTC
@@ -21,6 +21,7 @@

 #include "src/base/win32-headers.h"

+#include "src/base/bits.h"
 #include "src/base/lazy-instance.h"
 #include "src/base/macros.h"
 #include "src/base/platform/platform.h"
@@ -700,7 +701,7 @@
   if (page_size == 0) {
     SYSTEM_INFO info;
     GetSystemInfo(&info);
-    page_size = RoundUpToPowerOf2(info.dwPageSize);
+    page_size = base::bits::RoundUpToPowerOfTwo32(info.dwPageSize);
   }
   return page_size;
 }

--
--
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/d/optout.

Reply via email to