From ec935178fc22d0f35e384c28346122c3614e6575 Mon Sep 17 00:00:00 2001 From: Martin Ettl Date: Sun, 25 Apr 2010 13:14:58 +0200 Subject: [PATCH] reduced compiler warning of gcc-4.4 about initialization order in Ctor list of executionpath.h --- 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()