Merge commit 'f759964dbffd03457c0f13c467f1d890f759aff2' into harfbuzz
This commit is contained in:
commit
4aa2758f12
2 changed files with 3 additions and 3 deletions
|
@ -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();
|
||||
}
|
||||
|
|
|
@ -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());
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue