summaryrefslogtreecommitdiff
path: root/xmake/core/base/table.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2022-10-19 00:58:10 +0800
committerruki <[email protected]>2022-10-19 00:58:10 +0800
commit9b1e01c0b6deb3eaae25038643e11ea482ea248a (patch)
treee0911a64e8819432483fb948915f4f85c7efb001 /xmake/core/base/table.lua
parent78fe5e017f14b4459a36b27548d98af9485e9fff (diff)
use sysincludedirs
Diffstat (limited to 'xmake/core/base/table.lua')
-rw-r--r--xmake/core/base/table.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/core/base/table.lua b/xmake/core/base/table.lua
index 5e04b0256..a360f7b42 100644
--- a/xmake/core/base/table.lua
+++ b/xmake/core/base/table.lua
@@ -155,7 +155,7 @@ end
-- clone table
function table.clone(self)
- local result
+ local result = self
if type(self) == "table" then
result = {}
for k, v in pairs(self) do