From 492f6b0a025ac5a618b75444c2ba715f26304564 Mon Sep 17 00:00:00 2001
From: Timo Koch <timokoch@math.uio.no>
Date: Sun, 22 Jan 2023 19:01:53 +0000
Subject: [PATCH] [io][gnuplot] Fix variable type

---
 dumux/io/gnuplotinterface.hh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dumux/io/gnuplotinterface.hh b/dumux/io/gnuplotinterface.hh
index 4d52b5eaa0..be0287683c 100644
--- a/dumux/io/gnuplotinterface.hh
+++ b/dumux/io/gnuplotinterface.hh
@@ -434,10 +434,10 @@ private:
     CurveTypeVector curveType_;
     Scalar xRangeMin_;
     Scalar xRangeMax_;
-    Scalar xRangeIsSet_;
+    bool xRangeIsSet_;
     Scalar yRangeMin_;
     Scalar yRangeMax_;
-    Scalar yRangeIsSet_;
+    bool yRangeIsSet_;
     std::string xLabel_;
     std::string yLabel_;
     std::string plotOptions_;
-- 
GitLab