From 6cab957a76fd18ed2fa801ee997a2fa608db0ec5 Mon Sep 17 00:00:00 2001 From: Oliver Sander <sander@igpm.rwth-aachen.de> Date: Wed, 14 Jan 2015 14:37:58 +0100 Subject: [PATCH] Fix warning about wrong initialization order --- dune/solvers/solvers/quadraticipopt.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dune/solvers/solvers/quadraticipopt.hh b/dune/solvers/solvers/quadraticipopt.hh index f51e3915..f291212a 100644 --- a/dune/solvers/solvers/quadraticipopt.hh +++ b/dune/solvers/solvers/quadraticipopt.hh @@ -638,7 +638,7 @@ public: hessian_(NULL), rhs_(NULL), obstacles_(NULL), linearSolverType_("ma27"), - constraintMatrix_(NULL),constraintObstacles_(NULL) + constraintObstacles_(NULL),constraintMatrix_(NULL) {} /** \brief Constructor for a linear problem */ -- GitLab