Merge commit 'f759964dbffd03457c0f13c467f1d890f759aff2' into harfbuzz

This commit is contained in:
Hermann Kraus 2013-03-23 14:42:48 +01:00
commit 4aa2758f12
2 changed files with 3 additions and 3 deletions

View file

@ -186,7 +186,7 @@ void feature_style_processor<Processor>::apply(double scale_denom)
}
}
}
catch (proj_init_error& ex)
catch (proj_init_error const& ex)
{
MAPNIK_LOG_ERROR(feature_style_processor) << "feature_style_processor: proj_init_error=" << ex.what();
}
@ -228,7 +228,7 @@ void feature_style_processor<Processor>::apply(mapnik::layer const& lyr,
names);
}
}
catch (proj_init_error& ex)
catch (proj_init_error const& ex)
{
MAPNIK_LOG_ERROR(feature_style_processor) << "feature_style_processor: proj_init_error=" << ex.what();
}

View file

@ -420,7 +420,7 @@ void Map::zoom_all()
}
}
}
catch (proj_init_error & ex)
catch (proj_init_error const& ex)
{
throw mapnik::config_error(std::string("Projection error during map.zoom_all: ") + ex.what());
}