Ignore C++ operator identification from Ctags

Fixes #19
This commit is contained in:
Mikaël Bouillot 2017-06-30 12:57:02 +02:00
parent 217b6df8ca
commit bb762d0645

View file

@ -163,7 +163,9 @@ case $cmd in
parse-defs)
tmp=`mktemp -d`
git cat-file blob "$1" > $tmp/$2
ctags -x --c-kinds=+p-m $tmp/$2 | awk '{print $1" "$2" "$3}'
ctags -x --c-kinds=+p-m $tmp/$2 |
grep -av "^operator " |
awk '{print $1" "$2" "$3}'
rm $tmp/$2
rmdir $tmp
;;