reduced compiler warning of gcc-4.4 about initialization order in Ctor list of executionpath.h

This commit is contained in:
Martin Ettl 2010-04-25 13:14:58 +02:00
parent 52b84963e6
commit ec935178fc
1 changed files with 1 additions and 1 deletions

View File

@ -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()