Fix clang++ flag typo.

This commit is contained in:
Andrea Caforio 2017-02-16 18:12:41 +01:00
parent 8c758e339c
commit a7272466f7
1 changed files with 1 additions and 1 deletions

View File

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