I use emacs24.1 and auto-complete-clang to complete the C ++ syntax, but when I run the autocomplete action, droplist contains an invalid member function that is not specified in the structure. How can i avoid this? My init.el defines about auto-complete-clang.el
(add-to-list 'load-path "/root/.emacs.d/plugins/auto-complete-1.3.1") (require 'auto-complete) (require 'auto-complete-config) (add-to-list 'ac-dictionary-directories "/root/.emacs.d/plugins/ac-dict") (ac-config-default) ;;start after 3 characters were typed (setq ac-auto-start 3) ;;show menu immediately (setq ac-auto-show-menu 0.3)
Yes, I know that the constructor, destructor and operator = are by default, but I still donβt want them to be shown, because I did not specify their declared ones.

source share