Add missing definition of static member variables

This commit is contained in:
Émilie Feral
2020-04-15 15:59:29 +02:00
committed by Ecco
parent c2bd19d9a1
commit 675a0d3f4c
8 changed files with 49 additions and 0 deletions

View File

@@ -9,6 +9,9 @@ using namespace Poincare;
namespace Shared {
constexpr int ValuesController::k_maxNumberOfDisplayableRows;
// TODO: use std::abs
static inline int absInt(int x) { return x < 0 ? -x : x; }
// Constructor and helpers