Emacs 24.2, Cedet 1.1, Windows 7
Visual Studio 10.0 Include directory
(add-to-list 'load-path " ~/.emacs.d/cedet-1.1/common")
(load-file "~/.emacs.d/cedet-1.1/common/cedet.el")
(semantic-load-enable-excessive-code-helpers)
(semantic-load-enable-semantic-debugging-helpers)
(require 'semantic-decorate-include)
(require 'semantic-ia)
(global-ede-mode nil)
(setq-mode-local c-mode semanticdb-find-default-throttle
'(project local unloaded system recursive))
(setq-mode-local c++-mode semanticdb-find-default-throttle
'(project local unloaded system recursive))
(semantic-add-system-include "C:/Program Files/Microsoft Visual Studio 10.0/VS/Include" 'c++-mode)
When writing c++ program and include, say, iostream, it navigates to this include file, but is not able to parse it. On the other hand when include, say, stdlib.h it parses successfully such an include.
How to fix this?