reduced compiler warning of gcc-4.4 about initialization order in Ctor list of executionpath.h
This commit is contained in:
parent
52b84963e6
commit
ec935178fc
|
@ -41,7 +41,7 @@ protected:
|
|||
virtual bool is_equal(const ExecutionPath *) const = 0;
|
||||
|
||||
public:
|
||||
ExecutionPath(Check *c, unsigned int id) : varId(id), owner(c), numberOfIf(0)
|
||||
ExecutionPath(Check *c, unsigned int id) : owner(c), numberOfIf(0), varId(id)
|
||||
{ }
|
||||
|
||||
virtual ~ExecutionPath()
|
||||
|
|
Loading…
Reference in New Issue