summaryrefslogtreecommitdiff
path: root/xmake/core/base/string.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2021-09-18 10:18:22 +0800
committerruki <[email protected]>2021-09-18 10:18:22 +0800
commitaeeeca0fb547b157501045c0ddd44b0258619a2b (patch)
tree3963a4c135f1d65767dba02492d2e01c387d0751 /xmake/core/base/string.lua
parent1b231d9a73299528f1e336d4038c120d5a4fd183 (diff)
add common bit module
Diffstat (limited to 'xmake/core/base/string.lua')
-rw-r--r--xmake/core/base/string.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/core/base/string.lua b/xmake/core/base/string.lua
index 0be8cc793..686f36d18 100644
--- a/xmake/core/base/string.lua
+++ b/xmake/core/base/string.lua
@@ -24,7 +24,7 @@ local string = string or {}
-- load modules
local deprecated = require("base/deprecated")
local serialize = require("base/serialize")
-local bit = require("bit")
+local bit = require("base/bit")
-- save original interfaces
string._dump = string._dump or string.dump