remove std::clog print

This commit is contained in:
Dane Springmeyer 2015-05-06 06:35:37 -07:00
parent 0bfb7bae7a
commit b11eeef4b6

View file

@ -22,12 +22,12 @@
// mapnik // mapnik
#include <mapnik/image.hpp> #include <mapnik/image.hpp>
#include <mapnik/pixel_types.hpp>
// stl // stl
#include <algorithm>
#include <cassert> #include <cassert>
#include <stdexcept> #include <stdexcept>
#include <iostream> #include <algorithm>
namespace mapnik { namespace mapnik {
@ -282,7 +282,6 @@ inline void image<T>::set_scaling(double scaling)
scaling_ = scaling; scaling_ = scaling;
return; return;
} }
std::clog << "Can not set scaling to 0.0, offset not set." << std::endl;
} }
template <typename T> template <typename T>