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

Unified Diff: third_party/WebKit/Source/wtf/Compiler.h

Issue 1420613005: document COMPILER(GCC) and COMPILER(MSVC) a little better (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: document COMPILER(GCC) and COMPILER(MSVC) a little better Created 5 years, 2 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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__)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698