mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-18 16:27:34 +01:00
[poincare] Add Upper case to Poincare static Init function
This commit is contained in:
committed by
EmilieNumworks
parent
5b5211be24
commit
8105a000ab
@@ -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++) {
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
|
||||
namespace Poincare {
|
||||
|
||||
void init();
|
||||
void Init();
|
||||
|
||||
void Tidy();
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
|
||||
namespace Poincare {
|
||||
|
||||
void init() {
|
||||
void Init() {
|
||||
// Create and register the shared static pool
|
||||
static TreePool pool;
|
||||
TreePool::RegisterPool(&pool);
|
||||
|
||||
@@ -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)) {
|
||||
|
||||
Reference in New Issue
Block a user