diff options
Diffstat (limited to 'Source/WTF/wtf/FilePrintStream.h')
-rw-r--r-- | Source/WTF/wtf/FilePrintStream.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Source/WTF/wtf/FilePrintStream.h b/Source/WTF/wtf/FilePrintStream.h index f698a0270..cf8222172 100644 --- a/Source/WTF/wtf/FilePrintStream.h +++ b/Source/WTF/wtf/FilePrintStream.h @@ -28,7 +28,6 @@ #include <stdio.h> #include <wtf/PrintStream.h> -#include <wtf/OwnPtr.h> namespace WTF { @@ -46,8 +45,8 @@ public: FILE* file() { return m_file; } - virtual void vprintf(const char* format, va_list) override WTF_ATTRIBUTE_PRINTF(2, 0); - virtual void flush() override; + void vprintf(const char* format, va_list) override WTF_ATTRIBUTE_PRINTF(2, 0); + void flush() override; private: FILE* m_file; |