diff --git a/include/mapnik/util/file_io.hpp b/include/mapnik/util/file_io.hpp index 41a189b02..5dfe782eb 100644 --- a/include/mapnik/util/file_io.hpp +++ b/include/mapnik/util/file_io.hpp @@ -83,11 +83,7 @@ public: if (!size_) return nullptr; std::fseek(file_.get(), 0, SEEK_SET); data_type buffer(new char[size_]); -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wunknown-pragmas" -#pragma GCC diagnostics ignored "-Wunused-result" std::fread(buffer.get(), size_, 1, file_.get()); -#pragma GCC diagnostic pop return buffer; } private: