Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-dev] Parameter Guessing

Hi,

I am trying out the Parameter Guessing from the N&N and I can't get it
to work. Is there something that I have to do to enable it? I am
hoping to demo this at EclipseCon France in two weeks
https://www.eclipsecon.org/france2016/session/cdt-latest-greatest-tooling-cc

I started from a new workspace and Neon RC1 with this code (from the
tests) but I don't seem to get any parameter completions.


class aClass {
public:
int aField;
void aMethod(char c);
void aMethod(char c, int x);
};

class bClass: aClass {
};

void overload(int x, aClass a);
void overload(int x, aClass* aPtr);
int piab(aClass a, bClass b);
template<class T> void tFunc(T x, T y);

void foo(){
aClass* aTypePtr;
bClass bTypeObj;
piab(


Thanks!
Jonah

~~~
Jonah Graham
Kichwa Coders Ltd.
www.kichwacoders.com


Back to the top