Developer forums (C::B DEVELOPMENT STRICTLY!) > CodeCompletion redesign

Method completion doesn't work inside a class ?

(1/1)

Folco:
Hi,

A sample code :

--- Code: ---class A
{
    public:
        void func0 ();
        void func1 ();
};

void A::func0 ();
{
    fun|     /* No completion box appears here */
}
--- End code ---
I have a prompt [func0 | func1] only if I specify A::fun

Shouldn't I get the completion box even without the class specifier ?

killerbot:
It does work, but you have a bug in the code, It doesn't even compile


--- Code: ---void A::func0 ();  //<-------------------------------------------------------- NOTICE THIS ;   REMOVE IT  ;-)
{
    fun|     /* No completion box appears here */
}

--- End code ---

Folco:
Erf, my bad, thank you ^^

Navigation

[0] Message Index

Go to full version