[apps/shared/interval] Decrease the max number of elements

This commit is contained in:
Ruben Dashyan
2019-09-03 14:57:27 +02:00
parent 4436967c57
commit 340977e66a

View File

@@ -21,7 +21,7 @@ public:
void reset();
void clear();
// TODO: decide the max number of elements after optimization
constexpr static int k_maxNumberOfElements = 100;
constexpr static int k_maxNumberOfElements = 50;
private:
void computeElements();
int m_numberOfElements;