From 7a4bf4e3b08dfdf585c21753921797d401b4ba73 Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Fri, 27 Sep 2013 12:20:57 -0700 Subject: [PATCH] remove debug prints --- include/mapnik/webp_io.hpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/mapnik/webp_io.hpp b/include/mapnik/webp_io.hpp index 6d2af2685..5d715dc70 100644 --- a/include/mapnik/webp_io.hpp +++ b/include/mapnik/webp_io.hpp @@ -78,7 +78,6 @@ inline int import_image_data(T2 const& image, if (data.width() == image.width() && data.height() == image.height()) { - std::clog << "opt\n"; if (alpha) { return WebPPictureImportRGBA(&pic, data.getBytes(), stride); @@ -95,7 +94,6 @@ inline int import_image_data(T2 const& image, else { // need to copy: https://github.com/mapnik/mapnik/issues/2024 - std::clog << "copy\n"; image_data_32 im(image.width(),image.height()); for (unsigned y = 0; y < image.height(); ++y) {