8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-24 01:23:03 +01:00

Fixed snapshot's build using gcc 4.4

This commit is contained in:
alexpeshkoff 2012-04-12 07:54:54 +00:00
parent abaf48b071
commit 11843afcd4

View File

@ -200,8 +200,8 @@ public:
class WithClause : public Firebird::Array<SelectExprNode*> class WithClause : public Firebird::Array<SelectExprNode*>
{ {
public: public:
explicit WithClause(MemoryPool& pool) explicit WithClause(Firebird::MemoryPool& pool)
: Array(pool), : Firebird::Array<SelectExprNode*>(pool),
recursive(false) recursive(false)
{ {
} }