[poincare] Add Upper case to Poincare static Init function

This commit is contained in:
Léa Saviot
2018-09-25 10:23:01 +02:00
committed by EmilieNumworks
parent 5b5211be24
commit 8105a000ab
4 changed files with 4 additions and 4 deletions

View File

@@ -4,7 +4,7 @@
void ion_main(int argc, char * argv[]) {
// Initialize Poincare::TreePool::sharedPool
Poincare::init();
Poincare::Init();
#if EPSILON_GETOPT
for (int i=1; i<argc; i++) {

View File

@@ -3,7 +3,7 @@
namespace Poincare {
void init();
void Init();
void Tidy();

View File

@@ -4,7 +4,7 @@
namespace Poincare {
void init() {
void Init() {
// Create and register the shared static pool
static TreePool pool;
TreePool::RegisterPool(&pool);

View File

@@ -45,7 +45,7 @@ static inline void ion_main_inner() {
void ion_main(int argc, char * argv[]) {
// Initialize Poincare::TreePool::sharedPool
Poincare::init();
Poincare::Init();
Poincare::ExceptionCheckpoint ecp;
if (ExceptionRun(ecp)) {