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?ThanksOn Thu, Feb 28, 2013 at 9:21 PM, David Engster <deng@randomsample.de> wrote:
Zadirion Fay writes:Yes, it doesn't work in inline member functions. If you define it
> 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.
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