Re: [cedet-semantic] semantic-analyze-current-context search failure
Brought to you by:
zappo
|
From: Nikolaj S. <n_s...@we...> - 2007-06-19 10:23:19
|
"Eric M. Ludlam" <er...@si...> wrote:
> Do you happen to have a simple example that shows the problem I can
> work with?
sure:
class Class {
public:
Class _value;
Class() {
}
void test(int a, int z) {
Class foo;
foo.test(a, z);
foo._value.test(a, z);
}
};
where point is at either of the two calls to test().
|