summaryrefslogtreecommitdiff
path: root/xmake/core/base/bytes.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2021-09-18 13:34:47 +0800
committerruki <[email protected]>2021-09-18 13:34:47 +0800
commit38a7d3b7bc8d379970fae6825726761ff3e8e574 (patch)
tree1b8129254569b811a474f52ea0f8c03986a11b7d /xmake/core/base/bytes.lua
parent06a7b0bd911b5755b3c63fc8bd37f0f445f41d49 (diff)
add bit for bytes
Diffstat (limited to 'xmake/core/base/bytes.lua')
-rw-r--r--xmake/core/base/bytes.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake/core/base/bytes.lua b/xmake/core/base/bytes.lua
index 340b21cd0..6cebbdf2b 100644
--- a/xmake/core/base/bytes.lua
+++ b/xmake/core/base/bytes.lua
@@ -23,8 +23,8 @@ local bytes = bytes or {}
local _instance = _instance or {}
-- load modules
-local bit = require('bit')
-local ffi = require('ffi')
+local bit = require("base/bit")
+local ffi = require("ffi")
local os = require("base/os")
local utils = require("base/utils")
local todisplay = require("base/todisplay")