summaryrefslogtreecommitdiff
path: root/wx+/graph.h
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2022-02-06 16:41:53 -0500
committerB. Stack <bgstack15@gmail.com>2022-02-06 16:41:53 -0500
commitf6b6d222dc1a79c95f6756c707c5fcc3a785c030 (patch)
tree374c62790fde0ce5514ef56750d0ff023d61b528 /wx+/graph.h
parentadd upstream 11.16 (diff)
downloadFreeFileSync-f6b6d222dc1a79c95f6756c707c5fcc3a785c030.tar.gz
FreeFileSync-f6b6d222dc1a79c95f6756c707c5fcc3a785c030.tar.bz2
FreeFileSync-f6b6d222dc1a79c95f6756c707c5fcc3a785c030.zip
add upstream 11.17
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