mirror of
https://github.com/mapnik/mapnik.git
synced 2025-12-08 20:13:09 +00:00
expose no-args agg_stack_blur constructor
This commit is contained in:
parent
3178b96d67
commit
3d89e4001a
@ -41,6 +41,9 @@ struct agg_stack_blur
|
||||
{
|
||||
agg_stack_blur(unsigned rx_, unsigned ry_)
|
||||
: rx(rx_),ry(ry_) {}
|
||||
// an attemp to support older boost spirit (< 1.46)
|
||||
agg_stack_blur()
|
||||
: rx(0),ry(0) {}
|
||||
unsigned rx;
|
||||
unsigned ry;
|
||||
};
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user