Re: Problem to parce C++ string in VC2015
Eric Ludlam <[email protected]> Thu, 7 Jan 2016 19:20:42 -0500
| Newsgroups | gmane.emacs.cedet |
|---|---|
| Message-ID | <[email protected]> |
On 01/05/2016 06:54 AM, Frey Florez wrote: > Hello, > > I am trying to create a C/C++ IDE in emacs. As part of the process I > installed CEDET package. The parser is working with > .h header and structs, classes etc. The problem appears by using the C++ > <string> header > > std::string s1; > s1. //parsing problem > Attached my .emacs file. > > I appreciate your help, I tried this snippet, and it did completion for me without errors. Perhaps you have newer C++ headers, or something else getting in the way? s1. won't "parse" if you have "show unmatched syntax" turned on, because the parser only deals with complete declarations. If your code snippet is in a function, then it isn't clear what your error is from your email. Eric ------------------------------------------------------------------------------