From 9e8229e7678414bee397b7d006ae15c6542cf79e Mon Sep 17 00:00:00 2001 From: Joachim Le Fournis <43498612+RedGl0w@users.noreply.github.com> Date: Mon, 4 May 2020 09:28:10 +0200 Subject: [PATCH] [Interval] Removed useless getter See https://github.com/numworks/epsilon/pull/1538#discussion_r419252679 --- apps/shared/interval.h | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/shared/interval.h b/apps/shared/interval.h index 3022c99f6..57ced33e8 100644 --- a/apps/shared/interval.h +++ b/apps/shared/interval.h @@ -18,7 +18,6 @@ public: void setEnd(double f); void setStep(double f); void setElement(int i, double f); - bool needCompute() const { return m_needCompute; } void setNeedCompute(bool compute){ m_needCompute = compute;} void reset(); void clear();