| 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);
|
|
|