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

Unified Diff: third_party/WebKit/Source/wtf/StaticConstructors.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
« no previous file with comments | « third_party/WebKit/Source/wtf/RefPtr.h ('k') | third_party/WebKit/Source/wtf/StdLibExtras.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/wtf/StaticConstructors.h
diff --git a/third_party/WebKit/Source/wtf/StaticConstructors.h b/third_party/WebKit/Source/wtf/StaticConstructors.h
index f5804bdc9025813417e84a888b7281440394cca7..bd768f4f38b8f9f0288abf133a8b1f3616dc1130 100644
--- a/third_party/WebKit/Source/wtf/StaticConstructors.h
+++ b/third_party/WebKit/Source/wtf/StaticConstructors.h
@@ -30,7 +30,8 @@
// load, while a real global could be referenced directly by absolute or
// relative addressing.
-// Use an array of pointers instead of an array of char in case there is some alignment issue.
+// Use an array of pointers instead of an array of char in case there is some
+// alignment issue.
#define DEFINE_GLOBAL(type, name, ...) \
void* name##Storage[(sizeof(type) + sizeof(void*) - 1) / sizeof(void*)]; \
const type& name = *reinterpret_cast<type*>(&name##Storage);
« no previous file with comments | « third_party/WebKit/Source/wtf/RefPtr.h ('k') | third_party/WebKit/Source/wtf/StdLibExtras.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698