From 042055968ab0c48faec607889814e38c50c09efa Mon Sep 17 00:00:00 2001 From: Benoit Germain Date: Fri, 4 Jul 2025 13:50:53 +0200 Subject: Changed lua wrapper prefixes from luaG_ to luaW_ (w as in wrapper!) --- unit_tests/embedded_tests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'unit_tests/embedded_tests.cpp') diff --git a/unit_tests/embedded_tests.cpp b/unit_tests/embedded_tests.cpp index 6dc84a1..58d6a8a 100644 --- a/unit_tests/embedded_tests.cpp +++ b/unit_tests/embedded_tests.cpp @@ -192,7 +192,7 @@ TEST_CASE("lanes.embedding.with_default_allocator") // try again after manual registration lua_pushcfunction(S, S.get_lanes_register()); // S: lanes_register - luaG_pushstring(S, LUA_IOLIBNAME); // S: lanes_register "io" + luaW_pushstring(S, LUA_IOLIBNAME); // S: lanes_register "io" luaL_requiref(S, LUA_IOLIBNAME, luaopen_io, 1); // S: lanes_register "io" io lua_call(S, 2, 0); // S: S.stackCheck(0); -- cgit v1.2.3-55-g6feb