c++ style casts
This commit is contained in:
parent
3ae38bbab1
commit
4227fd5d69
2 changed files with 3 additions and 3 deletions
|
@ -117,8 +117,8 @@ mapnik::feature_ptr csv_index_featureset::next()
|
|||
{
|
||||
auto pos = *itr_++;
|
||||
#if defined(MAPNIK_MEMORY_MAPPED_FILE)
|
||||
char const* start = (char const*)mapped_region_->get_address() + pos.off;
|
||||
char const* end = start + pos.size;
|
||||
char const* start = static_cast<char const*>(mapped_region_->get_address()) + pos.off;
|
||||
char const* end = start + pos.size;
|
||||
#else
|
||||
std::fseek(file_.get(), pos.off, SEEK_SET);
|
||||
std::vector<char> record;
|
||||
|
|
|
@ -88,7 +88,7 @@ mapnik::feature_ptr geojson_index_featureset::next()
|
|||
{
|
||||
auto pos = *itr_++;
|
||||
#if defined(MAPNIK_MEMORY_MAPPED_FILE)
|
||||
char const* start = (char const*)mapped_region_->get_address() + pos.off;
|
||||
char const* start = static_cast<char const*>(mapped_region_->get_address()) + pos.off;
|
||||
char const* end = start + pos.size;
|
||||
#else
|
||||
std::fseek(file_.get(), pos.off, SEEK_SET);
|
||||
|
|
Loading…
Reference in a new issue