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

Unified Diff: third_party/WebKit/Source/wtf/Assertions.cpp

Issue 2513363002: Remove WTF_ATTRIBUTE_PRINTF. (Closed)
Patch Set: Remove comments 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 | « third_party/WebKit/Source/wtf/Assertions.h ('k') | third_party/WebKit/Source/wtf/DataLog.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/wtf/Assertions.cpp
diff --git a/third_party/WebKit/Source/wtf/Assertions.cpp b/third_party/WebKit/Source/wtf/Assertions.cpp
index 2620b5535e9895add28e1a5eaba5fc8b6686555a..1c0c899ea4b81ac78d8f8921dd6a791facc5444b 100644
--- a/third_party/WebKit/Source/wtf/Assertions.cpp
+++ b/third_party/WebKit/Source/wtf/Assertions.cpp
@@ -74,7 +74,7 @@
void WTFGetBacktrace(void** stack, int* size);
void WTFPrintBacktrace(void** stack, int size);
-WTF_ATTRIBUTE_PRINTF(1, 0)
+PRINTF_FORMAT(1, 0)
static void vprintf_stderr_common(const char* format, va_list args) {
#if OS(MACOSX) && USE(APPLE_SYSTEM_LOG)
va_list copyOfArgs;
@@ -132,7 +132,7 @@ static void vprintf_stderr_with_trailing_newline(const char* format,
#pragma GCC diagnostic pop
#endif
-WTF_ATTRIBUTE_PRINTF(1, 2)
+PRINTF_FORMAT(1, 2)
static void printf_stderr_common(const char* format, ...) {
va_list args;
va_start(args, format);
« no previous file with comments | « third_party/WebKit/Source/wtf/Assertions.h ('k') | third_party/WebKit/Source/wtf/DataLog.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698