summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2024-10-06 23:40:22 +0800
committerruki <[email protected]>2024-10-06 23:40:22 +0800
commit69e854c602c1df0e72c2423fe53340816eff89c3 (patch)
tree6e7ffb19bb9f3773a4847084cfbdf56277aa8e10
parent44f05cd75d6fb26adde30b4f055623ffe241eacd (diff)
remove assert
-rw-r--r--xmake/core/base/hashset.lua1
1 files changed, 0 insertions, 1 deletions
diff --git a/xmake/core/base/hashset.lua b/xmake/core/base/hashset.lua
index 87acf6cee..ecdfe72fb 100644
--- a/xmake/core/base/hashset.lua
+++ b/xmake/core/base/hashset.lua
@@ -263,7 +263,6 @@ end
-- construct from an array
function hashset.from(array)
- assert(array)
return hashset.of(table.unpack(array))
end