- reorder constructor initialization list to avoid warnings in raster datasource
This commit is contained in:
parent
1ee4255195
commit
7dbe1279bf
1 changed files with 2 additions and 2 deletions
|
@ -45,11 +45,11 @@ raster_featureset<LookupPolicy>::raster_featureset(LookupPolicy const& policy,
|
|||
query const& q)
|
||||
: policy_(policy),
|
||||
feature_id_(1),
|
||||
ctx_(boost::make_shared<mapnik::context_type>()),
|
||||
extent_(extent),
|
||||
bbox_(q.get_bbox()),
|
||||
curIter_(policy_.begin()),
|
||||
endIter_(policy_.end()),
|
||||
ctx_(boost::make_shared<mapnik::context_type>())
|
||||
endIter_(policy_.end())
|
||||
{
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue