When lldb Lua bindings are enabled, the generated LLDBWrapLua.cpp file
generates a compiler warning about C-linkage:
lldb/LLDBWrapLua.cpp:71170:1: warning: 'LLDBSwigLuaBreakpointCallbackFunction' has C-linkage specified, but returns incomplete type 'llvm::Expected<bool>' which could be incompatible with C
In lldb/source/Plugins/ScriptInterpreter/Lua/Lua.cpp these warnings
are suppressed using a few pragmas. Also Add these to lua-wrapper.swig
so they end up in LLDBWrapLua.cpp, making the warnings disappear.