From 2f1698c4cc956f26be1d490d30276e17f370c156 Mon Sep 17 00:00:00 2001 From: MBulli Date: Wed, 8 Apr 2020 15:28:06 +0200 Subject: [PATCH] Added default ctor for MovingMedianTS --- math/MovingMedianTS.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/math/MovingMedianTS.h b/math/MovingMedianTS.h index 572ceea..47ec75c 100644 --- a/math/MovingMedianTS.h +++ b/math/MovingMedianTS.h @@ -37,6 +37,11 @@ private: public: + /** default ctor with zero window-size */ + MovingMedianTS() : window(Timestamp::fromMS(0)) { + + } + /** ctor with the window-size to use */ MovingMedianTS(const Timestamp window) : window(window) {