Merge pull request #350 from qantik/clang-fix

Fix clang++ flag typo
This commit is contained in:
w0rp 2017-02-16 20:38:51 +00:00 committed by GitHub
commit 406d784f7a

View File

@ -13,7 +13,7 @@ call ale#linter#Define('cpp', {
\ 'name': 'clang', \ 'name': 'clang',
\ 'output_stream': 'stderr', \ 'output_stream': 'stderr',
\ 'executable': 'clang++', \ 'executable': 'clang++',
\ 'command': 'clang++ -S -x c -fsyntax-only ' \ 'command': 'clang++ -S -x c++ -fsyntax-only '
\ . g:ale_cpp_clang_options \ . g:ale_cpp_clang_options
\ . ' -', \ . ' -',
\ 'callback': 'ale#handlers#HandleGCCFormat', \ 'callback': 'ale#handlers#HandleGCCFormat',