avoid compiler warning
This commit is contained in:
parent
3654e92ee4
commit
840bb52de6
1 changed files with 4 additions and 4 deletions
|
@ -64,16 +64,16 @@ Map::Map()
|
|||
height_(400),
|
||||
srs_("+proj=longlat +ellps=WGS84 +datum=WGS84 +no_defs"),
|
||||
buffer_size_(0),
|
||||
base_path_(""),
|
||||
aspectFixMode_(GROW_BBOX) {}
|
||||
aspectFixMode_(GROW_BBOX),
|
||||
base_path_("") {}
|
||||
|
||||
Map::Map(int width,int height, std::string const& srs)
|
||||
: width_(width),
|
||||
height_(height),
|
||||
srs_(srs),
|
||||
buffer_size_(0),
|
||||
base_path_(""),
|
||||
aspectFixMode_(GROW_BBOX) {}
|
||||
aspectFixMode_(GROW_BBOX),
|
||||
base_path_("") {}
|
||||
|
||||
Map::Map(const Map& rhs)
|
||||
: width_(rhs.width_),
|
||||
|
|
Loading…
Reference in a new issue