| 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 cbcd343c3546fb33a81d58145501efc75a9617ec..ae6b887950f176687075210426a24381176d0bb9 100644
|
| --- a/third_party/WebKit/Source/wtf/DynamicAnnotations.cpp
|
| +++ b/third_party/WebKit/Source/wtf/DynamicAnnotations.cpp
|
| @@ -32,28 +32,29 @@
|
| // 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)
|
|
|