From ef45b02de17f8a1d1d0a83dbbfbcff221e6a8c84 Mon Sep 17 00:00:00 2001 From: Norbert Grunwald <Norbert.Grunwald@ufz.de> Date: Thu, 5 Sep 2019 11:18:48 +0200 Subject: [PATCH] changed order of class attributes --- MaterialLib/MPL/Properties/IdealGasLaw.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/MaterialLib/MPL/Properties/IdealGasLaw.h b/MaterialLib/MPL/Properties/IdealGasLaw.h index 5cfe50cb4ca..9c0b636a7e8 100644 --- a/MaterialLib/MPL/Properties/IdealGasLaw.h +++ b/MaterialLib/MPL/Properties/IdealGasLaw.h @@ -29,10 +29,6 @@ class Component; */ class IdealGasLaw final : public Property { -private: - Phase* _phase; - Component* _component; - public: /// This method assigns a pointer to the material object that is the owner /// of this property @@ -69,6 +65,10 @@ public: Variable const variable2, ParameterLib::SpatialPosition const& pos, double const t) const override; + +private: + Phase* _phase; + Component* _component; }; inline std::unique_ptr<IdealGasLaw> createIdealGasLaw( -- GitLab