8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-02-02 10:40:38 +01:00

Correction: remove duplicate field present in base class.

This commit is contained in:
Adriano dos Santos Fernandes 2020-06-04 22:32:22 -03:00
parent f3462219d9
commit 5a6ec09552

View File

@ -770,8 +770,7 @@ class InAutonomousTransactionNode : public TypedNode<StmtNode, StmtNode::TYPE_IN
public:
explicit InAutonomousTransactionNode(MemoryPool& pool)
: TypedNode<StmtNode, StmtNode::TYPE_IN_AUTO_TRANS>(pool),
action(NULL),
impureOffset(0)
action(NULL)
{
}
@ -787,7 +786,6 @@ public:
public:
NestConst<StmtNode> action;
SLONG impureOffset;
};