From ef29b8abcb7bd40e60b4fb9419108ce5612e8a00 Mon Sep 17 00:00:00 2001 From: "John K. Luebs" Date: Tue, 27 Feb 2024 21:53:16 -0600 Subject: [PATCH] unprivate kiwi::VariableData --- kiwi/kiwi/variable.h | 1 - 1 file changed, 1 deletion(-) diff --git a/kiwi/kiwi/variable.h b/kiwi/kiwi/variable.h index 662831a..ceee4b8 100644 --- a/kiwi/kiwi/variable.h +++ b/kiwi/kiwi/variable.h @@ -33,7 +33,6 @@ public: double value() const { return m_value; } void setValue(double value) { m_value = value; } -private: std::string m_name; double m_value;