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

Unified Diff: third_party/WebKit/Source/wtf/DataLog.h

Issue 2513363002: Remove WTF_ATTRIBUTE_PRINTF. (Closed)
Patch Set: 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
Index: third_party/WebKit/Source/wtf/DataLog.h
diff --git a/third_party/WebKit/Source/wtf/DataLog.h b/third_party/WebKit/Source/wtf/DataLog.h
index 1105eae28d24412b281401d85fbff99623f42a78..139cb974fd05e924e46befe81fb1bebffe5e359e 100644
--- a/third_party/WebKit/Source/wtf/DataLog.h
+++ b/third_party/WebKit/Source/wtf/DataLog.h
@@ -37,9 +37,8 @@ namespace WTF {
FilePrintStream& dataFile();
-WTF_EXPORT void dataLogFV(const char* format, va_list)
- WTF_ATTRIBUTE_PRINTF(1, 0);
-WTF_EXPORT void dataLogF(const char* format, ...) WTF_ATTRIBUTE_PRINTF(1, 2);
+WTF_EXPORT PRINTF_FORMAT(1, 0) void dataLogFV(const char* format, va_list);
+WTF_EXPORT PRINTF_FORMAT(1, 2) void dataLogF(const char* format, ...);
template <typename... T>
void dataLog(const T&... values) {

Powered by Google App Engine
This is Rietveld 408576698