summaryrefslogtreecommitdiff
path: root/xmake/core/base/interpreter.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2022-05-28 22:23:11 +0800
committerruki <[email protected]>2022-05-28 22:23:11 +0800
commitfccfafe963bc60348fab25908dcfa9f43a39093d (patch)
treee578d96f604257da402a997c8cb184d47d80ba49 /xmake/core/base/interpreter.lua
parent0db757b6c79d41db3c2e3296f97dac016a4f41cc (diff)
fix c++modules for cl
Diffstat (limited to 'xmake/core/base/interpreter.lua')
-rw-r--r--xmake/core/base/interpreter.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake/core/base/interpreter.lua b/xmake/core/base/interpreter.lua
index 07aa701dc..27b91c4e4 100644
--- a/xmake/core/base/interpreter.lua
+++ b/xmake/core/base/interpreter.lua
@@ -1065,7 +1065,7 @@ function interpreter:api_register_set_values(scope_kind, ...)
-- e.g. set_shflags({"-Wl,-exported_symbols_list", exportfile}, {force = true, expand = false})
if extra_config and extra_config.expand == false then
for _, value in ipairs(values) do
- table.wraplock(value)
+ table.wrap_lock(value)
end
else
-- expand values
@@ -1115,7 +1115,7 @@ function interpreter:api_register_add_values(scope_kind, ...)
-- e.g. add_shflags({"-Wl,-exported_symbols_list", exportfile}, {force = true, expand = false})
if extra_config and extra_config.expand == false then
for _, value in ipairs(values) do
- table.wraplock(value)
+ table.wrap_lock(value)
end
else
-- expand values