This commit is contained in:
rusefi 2023-11-05 18:18:21 -05:00
parent 857c078adc
commit ac9cbc9c56
2 changed files with 5 additions and 0 deletions

View File

@ -339,9 +339,11 @@ TOPT = -mthumb -DTHUMB
# Define C warning options here
CWARN = -Wall -Wextra -Wstrict-prototypes
CWARN += -Wundef
# Define C++ warning options here
CPPWARN = -Wall -Wextra
CPPWARN += -Wundef
#
# Compiler settings

View File

@ -2,7 +2,10 @@
#pragma once
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wundef"
#include "lua.hpp"
#pragma GCC diagnostic pop
class LuaHandle final {
public: