removed unneeded headers
This commit is contained in:
parent
308e315432
commit
b54aa9091b
1 changed files with 1 additions and 7 deletions
|
@ -23,13 +23,7 @@
|
||||||
|
|
||||||
// mapnik
|
// mapnik
|
||||||
#include <mapnik/graphics.hpp>
|
#include <mapnik/graphics.hpp>
|
||||||
|
|
||||||
#include <mapnik/image_util.hpp>
|
#include <mapnik/image_util.hpp>
|
||||||
// stl
|
|
||||||
#include <cassert>
|
|
||||||
#include <string.h>
|
|
||||||
#include <stack>
|
|
||||||
#include <iostream>
|
|
||||||
|
|
||||||
namespace mapnik
|
namespace mapnik
|
||||||
{
|
{
|
||||||
|
@ -41,7 +35,7 @@ namespace mapnik
|
||||||
Image32::Image32(const Image32& rhs)
|
Image32::Image32(const Image32& rhs)
|
||||||
:width_(rhs.width_),
|
:width_(rhs.width_),
|
||||||
height_(rhs.height_),
|
height_(rhs.height_),
|
||||||
data_(rhs.data_) {}
|
data_(rhs.data_) {}
|
||||||
|
|
||||||
Image32::~Image32() {}
|
Image32::~Image32() {}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue