diff options
| author | ruki <[email protected]> | 2022-05-28 22:23:11 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2022-05-28 22:23:11 +0800 |
| commit | fccfafe963bc60348fab25908dcfa9f43a39093d (patch) | |
| tree | e578d96f604257da402a997c8cb184d47d80ba49 /xmake/core/base/scopeinfo.lua | |
| parent | 0db757b6c79d41db3c2e3296f97dac016a4f41cc (diff) | |
fix c++modules for cl
Diffstat (limited to 'xmake/core/base/scopeinfo.lua')
| -rw-r--r-- | xmake/core/base/scopeinfo.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake/core/base/scopeinfo.lua b/xmake/core/base/scopeinfo.lua index b826ac648..ef15fc2e1 100644 --- a/xmake/core/base/scopeinfo.lua +++ b/xmake/core/base/scopeinfo.lua @@ -119,7 +119,7 @@ function _instance:_api_set_values(name, ...) -- e.g. target: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 @@ -168,7 +168,7 @@ function _instance:_api_add_values(name, ...) -- e.g. target: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 |
