diff --git a/benchmark/test_png_encoding2.cpp b/benchmark/test_png_encoding2.cpp index 910a9ac95..9b415e0b6 100644 --- a/benchmark/test_png_encoding2.cpp +++ b/benchmark/test_png_encoding2.cpp @@ -3,7 +3,7 @@ class test : public benchmark::test_case { - std::shared_ptr im_; + std::shared_ptr im_; public: test(mapnik::parameters const& params) : test_case(params) { @@ -13,7 +13,7 @@ public: { throw mapnik::image_reader_exception("Failed to load: " + filename); } - im_ = std::make_shared(reader->width(),reader->height()); + im_ = std::make_shared(reader->width(),reader->height()); reader->read(0,0,*im_); } bool validate() const