mirror of
https://github.com/mapnik/mapnik.git
synced 2026-02-01 17:36:36 +00:00
It doesn't work with GCC reverting back "disable [-Wunused-result] warning GCC : https://gcc.gnu.org/bugzilla/show_bug.cgi?id=25509"
This reverts commit 3c76e8d7ef0bf54d68612e48588b9b377502559a.
This commit is contained in:
parent
3c76e8d7ef
commit
2f55f0962e
@ -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:
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user