diff options
-rw-r--r-- | src/NDS.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -437,6 +437,9 @@ public: #ifdef JIT_ENABLED [[nodiscard]] bool IsJITEnabled() const noexcept { return EnableJIT; } void SetJITArgs(std::optional<JITArgs> args) noexcept; +#else + [[nodiscard]] bool IsJITEnabled() const noexcept { return false; } + void SetJITArgs(std::optional<JITArgs> args) noexcept {} #endif private: |