Index: third_party/WebKit/Source/wtf/Compiler.h |
diff --git a/third_party/WebKit/Source/wtf/Compiler.h b/third_party/WebKit/Source/wtf/Compiler.h |
index 6317ee0a73a40f9e721bd977c344d371aa633a5c..6fb5ad541e730bdceafcba2adbf218917249f8b1 100644 |
--- a/third_party/WebKit/Source/wtf/Compiler.h |
+++ b/third_party/WebKit/Source/wtf/Compiler.h |
@@ -42,12 +42,12 @@ |
#define WTF_COMPILER_CLANG 1 |
#endif |
-/* COMPILER(MSVC) - Microsoft Visual C++ */ |
+/* COMPILER(MSVC) - Microsoft Visual C++ (and Clang when compiling for Windows). */ |
#if defined(_MSC_VER) |
#define WTF_COMPILER_MSVC 1 |
#endif |
-/* COMPILER(GCC) - GNU Compiler Collection */ |
+/* COMPILER(GCC) - GNU Compiler Collection (and Clang when compiling for platforms other than Windows). */ |
#if defined(__GNUC__) |
#define WTF_COMPILER_GCC 1 |
#define GCC_VERSION (__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) |