summaryrefslogtreecommitdiff
path: root/xmake/core/base/utils.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2016-02-27 20:11:22 +0800
committerruki <[email protected]>2016-02-27 20:11:22 +0800
commitdd8ae9c540d5da04a8ffc8a030dfbbd53b26daa9 (patch)
tree6a0a9222796e509fffa5f2c3c53567a29be3921e /xmake/core/base/utils.lua
parent4e56f11cf31ad1279505ee5ed7e29945c20f0639 (diff)
add raise interfaces for os
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, ...)