| Index: third_party/WebKit/Source/wtf/DynamicAnnotations.cpp
|
| diff --git a/third_party/WebKit/Source/wtf/DynamicAnnotations.cpp b/third_party/WebKit/Source/wtf/DynamicAnnotations.cpp
|
| index b662877a5de17124322f41db91f3c8233c60c4e9..940c8413028d2ff15a142204a9ff2acc50429886 100644
|
| --- a/third_party/WebKit/Source/wtf/DynamicAnnotations.cpp
|
| +++ b/third_party/WebKit/Source/wtf/DynamicAnnotations.cpp
|
| @@ -34,28 +34,25 @@
|
| // This makes all Annotate* functions different, which prevents the linker from
|
| // folding them.
|
| #ifdef __COUNTER__
|
| -#define DYNAMIC_ANNOTATIONS_IMPL \
|
| - volatile short lineno = (__LINE__ << 8) + __COUNTER__; \
|
| - (void)lineno;
|
| +#define DYNAMIC_ANNOTATIONS_IMPL \
|
| + volatile short lineno = (__LINE__ << 8) + __COUNTER__; \
|
| + (void) lineno;
|
| #else
|
| -#define DYNAMIC_ANNOTATIONS_IMPL \
|
| - volatile short lineno = (__LINE__ << 8); \
|
| - (void)lineno;
|
| +#define DYNAMIC_ANNOTATIONS_IMPL \
|
| + volatile short lineno = (__LINE__ << 8); \
|
| + (void) lineno;
|
| #endif
|
|
|
| -void WTFAnnotateBenignRaceSized(const char*, int, const volatile void*, long, const char*)
|
| -{
|
| - DYNAMIC_ANNOTATIONS_IMPL
|
| +void WTFAnnotateBenignRaceSized(const char*, int, const volatile void*, long, const char*) {
|
| + DYNAMIC_ANNOTATIONS_IMPL
|
| }
|
|
|
| -void WTFAnnotateHappensBefore(const char*, int, const volatile void*)
|
| -{
|
| - DYNAMIC_ANNOTATIONS_IMPL
|
| +void WTFAnnotateHappensBefore(const char*, int, const volatile void*) {
|
| + DYNAMIC_ANNOTATIONS_IMPL
|
| }
|
|
|
| -void WTFAnnotateHappensAfter(const char*, int, const volatile void*)
|
| -{
|
| - DYNAMIC_ANNOTATIONS_IMPL
|
| +void WTFAnnotateHappensAfter(const char*, int, const volatile void*) {
|
| + DYNAMIC_ANNOTATIONS_IMPL
|
| }
|
|
|
| -#endif // USE(DYNAMIC_ANNOTATIONS) && !USE(DYNAMIC_ANNOTATIONS_NOIMPL)
|
| +#endif // USE(DYNAMIC_ANNOTATIONS) && !USE(DYNAMIC_ANNOTATIONS_NOIMPL)
|
|
|