summaryrefslogtreecommitdiff
path: root/wx+/graph.h
diff options
context:
space:
mode:
Diffstat (limited to 'wx+/graph.h')
-rw-r--r--wx+/graph.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/wx+/graph.h b/wx+/graph.h
index 55734a06..e9f6af32 100644
--- a/wx+/graph.h
+++ b/wx+/graph.h
@@ -54,7 +54,7 @@ private:
struct SparseCurveData : public CurveData
{
- SparseCurveData(bool addSteps = false) : addSteps_(addSteps) {} //addSteps: add points to get a staircase effect or connect points via a direct line
+ explicit SparseCurveData(bool addSteps = false) : addSteps_(addSteps) {} //addSteps: add points to get a staircase effect or connect points via a direct line
virtual std::optional<CurvePoint> getLessEq (double x) const = 0;
virtual std::optional<CurvePoint> getGreaterEq(double x) const = 0;
bgstack15