| 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 ffa8c34b789099b445d2f92233a20c74e1f4852f..f5804bdc9025813417e84a888b7281440394cca7 100644
|
| --- a/third_party/WebKit/Source/wtf/StaticConstructors.h
|
| +++ b/third_party/WebKit/Source/wtf/StaticConstructors.h
|
| @@ -31,8 +31,8 @@
|
| // relative addressing.
|
|
|
| // 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);
|
| +#define DEFINE_GLOBAL(type, name, ...) \
|
| + void* name##Storage[(sizeof(type) + sizeof(void*) - 1) / sizeof(void*)]; \
|
| + const type& name = *reinterpret_cast<type*>(&name##Storage);
|
|
|
| -#endif // StaticConstructors_h
|
| +#endif // StaticConstructors_h
|
|
|