| Index: runtime/vm/log.h
|
| diff --git a/runtime/vm/log.h b/runtime/vm/log.h
|
| index e6cc336d92739f372ffbfc1773c8da9ffefff833..c9cafc869a4417fba98441ac9f651bbab130c7ff 100644
|
| --- a/runtime/vm/log.h
|
| +++ b/runtime/vm/log.h
|
| @@ -15,15 +15,12 @@ class LogBlock;
|
| class Thread;
|
|
|
| #if defined(_MSC_VER)
|
| -#define THR_Print(format, ...) \
|
| - Log::Current()->Print(format, __VA_ARGS__)
|
| +#define THR_Print(format, ...) Log::Current()->Print(format, __VA_ARGS__)
|
| #else
|
| -#define THR_Print(format, ...) \
|
| - Log::Current()->Print(format, ##__VA_ARGS__)
|
| +#define THR_Print(format, ...) Log::Current()->Print(format, ##__VA_ARGS__)
|
| #endif
|
|
|
| -#define THR_VPrint(format, args) \
|
| - Log::Current()->VPrint(format, args)
|
| +#define THR_VPrint(format, args) Log::Current()->VPrint(format, args)
|
|
|
| typedef void (*LogPrinter)(const char* str, ...);
|
|
|
|
|