diff --git a/include/mapnik/util/char_array_buffer.hpp b/include/mapnik/util/char_array_buffer.hpp index 11d6801c1..e5b834baa 100644 --- a/include/mapnik/util/char_array_buffer.hpp +++ b/include/mapnik/util/char_array_buffer.hpp @@ -24,7 +24,6 @@ #define MAPNIK_UTIL_CHAR_ARRAY_BUFFER_HPP #include -#include namespace mapnik { namespace util { @@ -57,7 +56,6 @@ private: int_type pbackfail(int_type ch) { - std::cerr << "pbackfail" << std::endl; if (current_ == begin_ || (ch != traits_type::eof() && ch != current_[-1])) { return traits_type::eof();