summaryrefslogtreecommitdiff
path: root/xmake/modules/utils/binary
diff options
context:
space:
mode:
authorruki <[email protected]>2025-12-09 23:02:49 +0800
committerruki <[email protected]>2025-12-09 23:02:49 +0800
commitc6ffeca9e14d29e0880826b3caac7a4d1ee4a3d1 (patch)
treebe4a3dfccbb8f4d5632f119fb8b8eeb1369a439e /xmake/modules/utils/binary
parent06561a0bf8a82d2d6bed52daee8bbd3963f797b4 (diff)
update comments
Diffstat (limited to 'xmake/modules/utils/binary')
-rw-r--r--xmake/modules/utils/binary/readsyms.lua2
1 files changed, 0 insertions, 2 deletions
diff --git a/xmake/modules/utils/binary/readsyms.lua b/xmake/modules/utils/binary/readsyms.lua
index 0641d79e9..6058e8121 100644
--- a/xmake/modules/utils/binary/readsyms.lua
+++ b/xmake/modules/utils/binary/readsyms.lua
@@ -90,10 +90,8 @@ function main(binaryfiles)
local all_symbols = {}
if type(binaryfiles) == "string" then
- -- single file
return _get_symbols(binaryfiles)
else
- -- multiple files
for _, binaryfile in ipairs(binaryfiles) do
local symbols = _get_symbols(binaryfile)
if symbols then