summaryrefslogtreecommitdiff
path: root/xmake/core/base/path.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/path.lua
parent0db757b6c79d41db3c2e3296f97dac016a4f41cc (diff)
fix c++modules for cl
Diffstat (limited to 'xmake/core/base/path.lua')
-rw-r--r--xmake/core/base/path.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/core/base/path.lua b/xmake/core/base/path.lua
index 26ac901db..421797f07 100644
--- a/xmake/core/base/path.lua
+++ b/xmake/core/base/path.lua
@@ -36,7 +36,7 @@ function _instance.new(p, transform)
instance._RAWSTR = p
instance._TRANSFORM = transform
setmetatable(instance, _instance)
- table.wraplock(instance)
+ table.wrap_lock(instance)
instance:_update()
return instance
end