mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-29 03:29:58 +02:00
[apps] Add missing min/max redefinition
This commit is contained in:
committed by
LeaNumworks
parent
b2b0f4fab0
commit
0b71e92625
@@ -7,6 +7,9 @@
|
||||
|
||||
using namespace Poincare;
|
||||
|
||||
static inline int min(int x, int y) { return (x<y ? x : y); }
|
||||
static inline int max(int x, int y) { return (x>y ? x : y); }
|
||||
|
||||
namespace Shared {
|
||||
|
||||
StoreController::ContentView::ContentView(DoublePairStore * store, Responder * parentResponder, TableViewDataSource * dataSource, SelectableTableViewDataSource * selectionDataSource, TextFieldDelegate * textFieldDelegate) :
|
||||
|
||||
Reference in New Issue
Block a user