mirror of
https://github.com/NGSolve/netgen.git
synced 2024-12-24 04:50:34 +05:00
fix initialization order warning
This commit is contained in:
parent
e272f0c704
commit
3258b27410
@ -32,7 +32,7 @@ namespace ngcore
|
||||
FUNC f;
|
||||
public:
|
||||
FilterIterator(FUNC af, Iterator aiter, Iterator aend)
|
||||
: f(af), iter(aiter), end(aend)
|
||||
: iter(aiter), end(aend), f(af)
|
||||
{
|
||||
while(iter!=end && !f(*iter))
|
||||
++iter;
|
||||
|
Loading…
Reference in New Issue
Block a user