diff options
| author | ruki <[email protected]> | 2020-12-04 22:34:53 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2020-12-04 22:34:53 +0800 |
| commit | 6dc9bb8002c3f1df874fe2d2adcbf94ac22b6531 (patch) | |
| tree | e3997d117103e9d956ddb3d85c791bcd76d3160e /xmake/plugins/project/vsxmake/render.lua | |
| parent | 45cf48edf8f7859d6469dd783d8ff7d298f7f1c6 (diff) | |
fix c++ language intellisense for vsxmake
Diffstat (limited to 'xmake/plugins/project/vsxmake/render.lua')
| -rw-r--r-- | xmake/plugins/project/vsxmake/render.lua | 4 |
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 |
