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

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

Issue 2386843002: reflow comments in wtf (Closed)
Patch Set: comments (heh!) Created 4 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
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 0dcac06a9bcb17f82d65e2340eb766d1ea191d64..413bf2101090ae5c439f724ec0d0ff0840a0de6b 100644
--- a/third_party/WebKit/Source/wtf/Compiler.h
+++ b/third_party/WebKit/Source/wtf/Compiler.h
@@ -37,12 +37,14 @@
#define WTF_COMPILER_CLANG 1
#endif
-/* COMPILER(MSVC) - Microsoft Visual C++ (and Clang when compiling for Windows). */
+/* 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 (and Clang when compiling for platforms other than Windows). */
+/* 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 \
@@ -50,7 +52,8 @@
#define GCC_VERSION_AT_LEAST(major, minor, patch) \
(GCC_VERSION >= (major * 10000 + minor * 100 + patch))
#else
-/* Define this for !GCC compilers, just so we can write things like GCC_VERSION_AT_LEAST(4, 1, 0). */
+/* Define this for !GCC compilers, just so we can write things like
+ * GCC_VERSION_AT_LEAST(4, 1, 0). */
#define GCC_VERSION_AT_LEAST(major, minor, patch) 0
#endif
@@ -154,7 +157,8 @@
#define NO_SANITIZE_UNRELATED_CAST
#endif
-/* WTF_NON_EXPORTED_BASE; similar NON_EXPORTED_BASE in base/compiler_specific.h */
+/* WTF_NON_EXPORTED_BASE; similar NON_EXPORTED_BASE in base/compiler_specific.h
+ */
#if COMPILER(MSVC)
#define WTF_NON_EXPORTED_BASE(code) __pragma(warning(suppress : 4275)) code
« no previous file with comments | « third_party/WebKit/Source/wtf/BloomFilter.h ('k') | third_party/WebKit/Source/wtf/CryptographicallyRandomNumber.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698