summaryrefslogtreecommitdiff
path: root/ale_linters/cpp/gcc.vim
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2017-04-16 01:24:08 +0100
committerw0rp <devw0rp@gmail.com>2017-04-16 01:24:08 +0100
commite97dada261c4a69f43c5a6c34d349ad6246fe34c (patch)
treebbaf8aec8ec0474251bdd3e183eb93d06d80c792 /ale_linters/cpp/gcc.vim
parente80116cee03af66bb229c3f570f0b2f244f0a197 (diff)
downloadale-e97dada261c4a69f43c5a6c34d349ad6246fe34c.zip
#427 Implement buffer variable overrides for all linter options
Diffstat (limited to 'ale_linters/cpp/gcc.vim')
-rw-r--r--ale_linters/cpp/gcc.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/ale_linters/cpp/gcc.vim b/ale_linters/cpp/gcc.vim
index c16a0706..9e8f859d 100644
--- a/ale_linters/cpp/gcc.vim
+++ b/ale_linters/cpp/gcc.vim
@@ -20,7 +20,7 @@ function! ale_linters#cpp#gcc#GetCommand(buffer) abort
" headers in the same directory.
return 'gcc -S -x c++ -fsyntax-only '
\ . '-iquote ' . fnameescape(fnamemodify(bufname(a:buffer), ':p:h'))
- \ . ' ' . g:ale_cpp_gcc_options . ' -'
+ \ . ' ' . ale#Var(a:buffer, 'cpp_gcc_options') . ' -'
endfunction
call ale#linter#Define('cpp', {