Skip to content

Commit

Permalink
Fixed definition for Runtime::repl()
Browse files Browse the repository at this point in the history
  • Loading branch information
nthnn committed Nov 10, 2024
1 parent 74f604a commit 77d7e47
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions include/n8/core/Runtime.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,6 @@ class Runtime final {
#endif

public:
static void repl();

static bool isTestMode();
static void setTestMode(bool _testMode);

Expand All @@ -44,7 +42,12 @@ class Runtime final {

static void cleanUp();

#ifdef __EMSCRIPTEN__
#ifndef __EMSCRIPTEN__

static void repl();

#else

static void setOutputElementId(std::string id);
static std::string getOutputElementId();

Expand Down

0 comments on commit 77d7e47

Please sign in to comment.