Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(540)

Unified Diff: runtime/vm/log.h

Issue 2481873005: clang-format runtime/vm (Closed)
Patch Set: Merge Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/lockers.cc ('k') | runtime/vm/log.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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, ...);
« no previous file with comments | « runtime/vm/lockers.cc ('k') | runtime/vm/log.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698