summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--completions/cppcheck4
1 files changed, 4 insertions, 0 deletions
diff --git a/completions/cppcheck b/completions/cppcheck
index 272166bc..bb45bebf 100644
--- a/completions/cppcheck
+++ b/completions/cppcheck
@@ -37,6 +37,10 @@ _cppcheck()
COMPREPLY=( $( compgen -W 'posix' -- "$cur" ) )
return
;;
+ --platform)
+ COMPREPLY=( $( compgen -W 'unix32 unix64 win32 win64' -- "$cur" ) )
+ return
+ ;;
--xml-version)
COMPREPLY=( $( compgen -W '1 2' -- "$cur" ) )
return