| Index: third_party/WebKit/Source/wtf/FilePrintStream.h
|
| diff --git a/third_party/WebKit/Source/wtf/FilePrintStream.h b/third_party/WebKit/Source/wtf/FilePrintStream.h
|
| index a94f306320f689674d764ee87f7b660bff92f262..46af3de1abc7c826291646110fdbf69d3180620b 100644
|
| --- a/third_party/WebKit/Source/wtf/FilePrintStream.h
|
| +++ b/third_party/WebKit/Source/wtf/FilePrintStream.h
|
| @@ -26,6 +26,7 @@
|
| #ifndef FilePrintStream_h
|
| #define FilePrintStream_h
|
|
|
| +#include "wtf/Compiler.h"
|
| #include "wtf/PrintStream.h"
|
| #include <memory>
|
| #include <stdio.h>
|
| @@ -44,7 +45,7 @@ class WTF_EXPORT FilePrintStream final : public PrintStream {
|
|
|
| FILE* file() { return m_file; }
|
|
|
| - void vprintf(const char* format, va_list) override WTF_ATTRIBUTE_PRINTF(2, 0);
|
| + PRINTF_FORMAT(2, 0) void vprintf(const char* format, va_list) override;
|
| void flush() override;
|
|
|
| private:
|
|
|