From ec9daf8d62069abb871c7951d93e9cff9718211c Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Wed, 17 Apr 2019 18:08:08 +0200 Subject: [PATCH] window: refactor steps -> length --- common/include/villas/dsp/window.hpp | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/common/include/villas/dsp/window.hpp b/common/include/villas/dsp/window.hpp index 0d0efbc48..61de285c7 100644 --- a/common/include/villas/dsp/window.hpp +++ b/common/include/villas/dsp/window.hpp @@ -66,16 +66,11 @@ public: return out; } - size_type getSteps() const + size_type getLength() const { return steps; } - size_type getPos() const - { - return pos; - } - T operator[](int i) const { return data[(pos + i) & mask];