Skip to main content

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

Hi,

Has anyone any thoughts about this. It is the first eye-catching thing
in our N&N for 9.0 and I can't get it to work.

Thanks,
Jonah

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


On 24 May 2016 at 11:48, Jonah Graham <jonah@xxxxxxxxxxxxxxxx> wrote:
> 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