diff --git a/firmware/controllers/lua/lua.cpp b/firmware/controllers/lua/lua.cpp index be9526f117..c1b3ebcbcd 100644 --- a/firmware/controllers/lua/lua.cpp +++ b/firmware/controllers/lua/lua.cpp @@ -465,6 +465,7 @@ void testLuaExecString(const char* script) { } #endif // EFI_UNIT_TEST +#endif // EFI_LUA // This is technically non-compliant, but it's only used for lua float parsing. // It doesn't properly handle very small and very large numbers, and doesn't @@ -508,5 +509,3 @@ extern "C" float strtof_rusefi(const char* str, char** endPtr) { return integerPart + fractionalPart / div; } - -#endif // EFI_LUA