semantic-ia-complete-symbol cannot find the type of a c++ vector iterator
Vincent Semeria <[email protected]> Wed, 21 Jan 2015 16:38:10 +0100
| Newsgroups | gmane.emacs.cedet |
|---|---|
| Message-ID | <CAJJyN4upb=LvoPvCPTXWDyV8U+q5bgiU+WMxEgJCA36k45ct4A@mail.gmail.com> |
Hello, In the attached c++ file, set the point after beg-> and run semantic-ia-complete-symbol. It will fail saying semantic-analyze-possible-completions-default: Cannot find types for `std::vector::iterator beg[=v.begin()]' Thanks, Vincent ------------------------------------------------------------------------------ New Year. New Location. New Benefits. New Data Center in Ashburn, VA. GigeNET is offering a free month of service with a new server in Ashburn. Choose from 2 high performing configs, both with 100TB of bandwidth. Higher redundancy.Lower latency.Increased capacity.Completely compliant. http://p.sf.net/sfu/gigenet _______________________________________________ Cedet-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/cedet-devel
BugVector.cpp
(text/x-c++src, 173 B)
#include <vector>
struct VectItem
{
long a;
int b;
};
void foo()
{
std::vector<VectItem> v(1);
std::vector<VectItem>::iterator beg = v.begin();
beg->
}