Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(720)

Unified Diff: src/platform.h

Issue 145593003: v8config.h: set V8_CC_MSVC when building with clang-cl (Closed) Base URL: https://github.com/v8/v8.git@master
Patch Set: Introduce V8_LIBC_MSVCRT Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/globals.h ('k') | src/preparser.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/platform.h
diff --git a/src/platform.h b/src/platform.h
index 51eefc10f802a7691a1ef4dcebf753eb87be2c5d..8af90f1cb3e9799e85986d4cb84cd6df6a295e78 100644
--- a/src/platform.h
+++ b/src/platform.h
@@ -64,7 +64,7 @@ int signbit(double x);
#endif
// Microsoft Visual C++ specific stuff.
-#if V8_CC_MSVC
+#if V8_LIBC_MSVCRT
#include "win32-headers.h"
#include "win32-math.h"
@@ -91,7 +91,7 @@ inline int lrint(double flt) {
}
#endif // _MSC_VER < 1800
-#endif // V8_CC_MSVC
+#endif // V8_LIBC_MSVCRT
namespace v8 {
namespace internal {
« no previous file with comments | « src/globals.h ('k') | src/preparser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698