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

Unified Diff: src/log-utils.h

Issue 1867383002: Revert of Fix printf formats (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 8 months 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 | « src/log.cc ('k') | src/log-utils.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/log-utils.h
diff --git a/src/log-utils.h b/src/log-utils.h
index 059e5a53c5cab58a811acc01cf90c76eded501e1..3e70a96c8f1b97ac01cd57085a06a884b32e768e 100644
--- a/src/log-utils.h
+++ b/src/log-utils.h
@@ -10,7 +10,6 @@
#include <cstdarg>
#include "src/allocation.h"
-#include "src/base/compiler-specific.h"
#include "src/base/platform/mutex.h"
#include "src/flags.h"
@@ -63,10 +62,10 @@
~MessageBuilder() { }
// Append string data to the log message.
- void PRINTF_FORMAT(2, 3) Append(const char* format, ...);
+ void Append(const char* format, ...);
// Append string data to the log message.
- void PRINTF_FORMAT(2, 0) AppendVA(const char* format, va_list args);
+ void AppendVA(const char* format, va_list args);
// Append a character to the log message.
void Append(const char c);
« no previous file with comments | « src/log.cc ('k') | src/log-utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698