mirror of
https://github.com/mapnik/mapnik.git
synced 2025-12-08 20:13:09 +00:00
fix compiler warning (warning: field 'expected_query_bbox_' will be initialized after base 'mapnik::memory_datasource' [-Wreorder])
This commit is contained in:
parent
c08b639902
commit
65e98c1940
@ -16,8 +16,8 @@ class test_datasource : public mapnik::memory_datasource
|
||||
{
|
||||
public:
|
||||
test_datasource(mapnik::box2d<double> const& expected_query_bbox)
|
||||
: expected_query_bbox_(expected_query_bbox),
|
||||
mapnik::memory_datasource(prepare_params())
|
||||
: mapnik::memory_datasource(prepare_params()),
|
||||
expected_query_bbox_(expected_query_bbox)
|
||||
{
|
||||
}
|
||||
|
||||
@ -97,4 +97,3 @@ SECTION("query extent with buffer-size should not be affected by scale-factor")
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user