Browse Source

C++20 compiler

master
n0m1s 6 years ago
parent
commit
a781c31a60
Signed by: nomis GPG Key ID: BC0454CAD76FE803
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      config/plugins.vimrc

+ 1
- 1
config/plugins.vimrc View File

@ -48,7 +48,7 @@ let g:ale_cpp_clang_includes = [
\ split(system("find '/usr/include/qt' -maxdepth 1 -type d"), '\n') + \ split(system("find '/usr/include/qt' -maxdepth 1 -type d"), '\n') +
\ split(system("[[ " . getcwd() . " == *'workspace'* ]] && find " . getcwd() . " -type d -name 'include'"), '\n') \ split(system("[[ " . getcwd() . " == *'workspace'* ]] && find " . getcwd() . " -type d -name 'include'"), '\n')
let g:ale_cpp_clang_options = '-std=c++17 -Wall -Wno-pragma-once-outside-header'
let g:ale_cpp_clang_options = '-std=c++2a -Wall -Wno-pragma-once-outside-header'
if len(g:ale_cpp_clang_includes) if len(g:ale_cpp_clang_includes)
let g:ale_cpp_clang_options = g:ale_cpp_clang_options . ' -I' . join(g:ale_cpp_clang_includes, " -I") let g:ale_cpp_clang_options = g:ale_cpp_clang_options . ' -I' . join(g:ale_cpp_clang_includes, " -I")
endif endif


Loading…
Cancel
Save