8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 00:43:02 +01:00
This commit is contained in:
asfernandes 2014-04-07 15:23:23 +00:00
parent a66ac62755
commit 3e2f5c2d7a

View File

@ -1321,7 +1321,7 @@ class SetGeneratorNode : public TypedNode<StmtNode, StmtNode::TYPE_SET_GENERATOR
public:
SetGeneratorNode(MemoryPool& pool, const Firebird::MetaName& name, ValueExprNode* aValue = NULL)
: TypedNode<StmtNode, StmtNode::TYPE_SET_GENERATOR>(pool),
generator(pool, name), value(aValue), sysGen(false)
generator(pool, name), value(aValue)
{
}
@ -1343,9 +1343,6 @@ public:
public:
GeneratorItem generator;
NestConst<ValueExprNode> value;
private:
bool sysGen;
};