summaryrefslogtreecommitdiff
path: root/xmake/core/base/utils.lua
diff options
context:
space:
mode:
Diffstat (limited to 'xmake/core/base/utils.lua')
-rw-r--r--xmake/core/base/utils.lua10
1 files changed, 0 insertions, 10 deletions
diff --git a/xmake/core/base/utils.lua b/xmake/core/base/utils.lua
index f0664f294..a73034261 100644
--- a/xmake/core/base/utils.lua
+++ b/xmake/core/base/utils.lua
@@ -56,16 +56,6 @@ function utils.error(msg, ...)
print("error: " .. string.format(msg, ...))
end
--- the abort function, will raise an exception
--- and the parent function can capture it
---
--- so we do not use os.exit()
-function utils.abort()
-
- -- trace
- error()
-end
-
-- the warning function
function utils.warning(msg, ...)