diff options
author | equal-l2 <equal-l2@users.noreply.github.com> | 2017-03-01 02:42:35 +0900 |
---|---|---|
committer | equal-l2 <equal-l2@users.noreply.github.com> | 2017-03-01 02:42:35 +0900 |
commit | 4fa52fd98a7ba58dbdb1b6045a21a36c89b06526 (patch) | |
tree | af5ad2898d3853ecd25a5d854247725c6149f92f /ale_linters | |
parent | ceeff6c723463ee4d47159d48b44eb49f8222e91 (diff) | |
download | ale-4fa52fd98a7ba58dbdb1b6045a21a36c89b06526.zip |
Use latest C++ standard
Diffstat (limited to 'ale_linters')
-rw-r--r-- | ale_linters/cpp/clang.vim | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/ale_linters/cpp/clang.vim b/ale_linters/cpp/clang.vim index 9c2c73cf..7cd86968 100644 --- a/ale_linters/cpp/clang.vim +++ b/ale_linters/cpp/clang.vim @@ -3,10 +3,7 @@ " Set this option to change the Clang options for warnings for CPP. if !exists('g:ale_cpp_clang_options') - " let g:ale_cpp_clang_options = '-Wall' - " let g:ale_cpp_clang_options = '-std=c99 -Wall' - " c11 compatible - let g:ale_cpp_clang_options = '-std=c11 -Wall' + let g:ale_cpp_clang_options = '-std=c++14 -Wall' endif call ale#linter#Define('cpp', { |