summaryrefslogtreecommitdiff
path: root/xmake/plugins/project/vsxmake/render.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2020-12-04 22:34:53 +0800
committerruki <[email protected]>2020-12-04 22:34:53 +0800
commit6dc9bb8002c3f1df874fe2d2adcbf94ac22b6531 (patch)
treee3997d117103e9d956ddb3d85c791bcd76d3160e /xmake/plugins/project/vsxmake/render.lua
parent45cf48edf8f7859d6469dd783d8ff7d298f7f1c6 (diff)
fix c++ language intellisense for vsxmake
Diffstat (limited to 'xmake/plugins/project/vsxmake/render.lua')
-rw-r--r--xmake/plugins/project/vsxmake/render.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake/plugins/project/vsxmake/render.lua b/xmake/plugins/project/vsxmake/render.lua
index 8777471e0..346eec2f0 100644
--- a/xmake/plugins/project/vsxmake/render.lua
+++ b/xmake/plugins/project/vsxmake/render.lua
@@ -46,7 +46,7 @@ function _expand(params)
for i, p in ipairs(r) do
rcopy[i] = p .. "\0" .. c
end
- newr= table.join(newr, rcopy)
+ newr = table.join(newr, rcopy)
end
r = newr
end
@@ -71,4 +71,4 @@ end
function main(templatepath, pattern, paramsprovider)
local opt = { pattern = pattern, paramsprovider = paramsprovider, templatedir = path.directory(templatepath) }
return _render(templatepath, opt, {})
-end \ No newline at end of file
+end