Fixed GCC warning about initialization order

This commit is contained in:
firewave 2010-04-25 12:57:25 +02:00
parent 52b84963e6
commit 27c85afb02
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()