The fix worked nicely, thank you very much!
On Fri, Mar 1, 2013 at 1:13 AM, Zadirion Fay <zadirion@...> wrote:
> Just saw your second email, checking now if it works
>
>
> On Fri, Mar 1, 2013 at 12:01 AM, Zadirion Fay <zadirion@...> wrote:
>
>> Hey, thanks David Engster for confirming this. I was afraid there might
>> be something wrong with my configuration.
>> Also, do you happen to know if cdb-gud, the unified debugger mode for
>> debugging Visual Studio application through cdb is still maintained? Or any
>> other way to debug VS apps from emacs?
>>
>> Thanks
>>
>>
>> On Thu, Feb 28, 2013 at 9:21 PM, David Engster <deng@...:
>>
>>> Zadirion Fay writes:
>>> > I'm having a problem getting semantic to understand the `this` c++
>>> keyword:
>>> >
>>> > #include <iostream>
>>> >
>>> > class SomeStructure
>>> > {
>>> > int mMemberOne;
>>> > float mMemberTwo;
>>> >
>>> > char MemberFunction()
>>> > {
>>> > int test = 0;
>>> > ++test;
>>> > this->
>>> > }
>>> > };
>>> >
>>> > int main()
>>> > {
>>> > SomeStructure abc;
>>> > abc.MemberFunctionMemberFunction
>>> > }
>>> >
>>> > Any other autocompletion works in this file except when I'm trying to
>>> > autocomplete `this->`. I get no suggestions.
>>>
>>> Yes, it doesn't work in inline member functions. If you define it
>>> outside the class, it should work. Not sure why it doesn't work for
>>> inlines. It's on my TODO now, but it might take a while until I get to
>>> it.
>>>
>>> -David
>>>
>>
>>
>
|