aboutsummaryrefslogtreecommitdiff
path: root/lldb/unittests/ScriptInterpreter/Lua/LuaTests.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/unittests/ScriptInterpreter/Lua/LuaTests.cpp')
-rw-r--r--lldb/unittests/ScriptInterpreter/Lua/LuaTests.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/lldb/unittests/ScriptInterpreter/Lua/LuaTests.cpp b/lldb/unittests/ScriptInterpreter/Lua/LuaTests.cpp
index 76ce3bc..8d849ca 100644
--- a/lldb/unittests/ScriptInterpreter/Lua/LuaTests.cpp
+++ b/lldb/unittests/ScriptInterpreter/Lua/LuaTests.cpp
@@ -30,6 +30,11 @@ extern "C" llvm::Expected<bool> LLDBSwigLuaBreakpointCallbackFunction(
return false;
}
+extern "C" llvm::Expected<bool> LLDBSwigLuaWatchpointCallbackFunction(
+ lua_State *L, lldb::StackFrameSP stop_frame_sp, lldb::WatchpointSP wp_sp) {
+ return false;
+}
+
#if _MSC_VER
#pragma warning (pop)
#endif