From 840bb52de6a1213d2308dda2104b1b2903e477b7 Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Wed, 1 Jun 2011 18:53:47 +0000 Subject: [PATCH] avoid compiler warning --- src/map.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/map.cpp b/src/map.cpp index 2e4952b84..da0683a2a 100644 --- a/src/map.cpp +++ b/src/map.cpp @@ -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_),