From 99af4df8eaabf10fa80a12bf4cd6efe9aab3624c Mon Sep 17 00:00:00 2001 From: Zoltan Szabadka Date: Thu, 23 Apr 2015 16:43:38 +0200 Subject: [PATCH] Remove the 'override' keyword from ~BrotliFileIn(). Apparently MSVS 2010 does not support this. --- enc/streams.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/enc/streams.h b/enc/streams.h index 9eac764..149099e 100644 --- a/enc/streams.h +++ b/enc/streams.h @@ -103,7 +103,7 @@ class BrotliStringOut : public BrotliOut { class BrotliFileIn : public BrotliIn { public: BrotliFileIn(FILE* f, size_t max_read_size); - ~BrotliFileIn() override; + ~BrotliFileIn(); const void* Read(size_t n, size_t* bytes_read) override;