From 27c85afb022c062d2e443f6b3cdd1ef6823d26ca Mon Sep 17 00:00:00 2001 From: firewave Date: Sun, 25 Apr 2010 12:57:25 +0200 Subject: [PATCH] Fixed GCC warning about initialization order --- lib/executionpath.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/executionpath.h b/lib/executionpath.h index 18f54d975..5492afb75 100644 --- a/lib/executionpath.h +++ b/lib/executionpath.h @@ -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()