@b4n, it looked like you are relying on autocomplete's algorithm by cunningly renaming it, but it doesn't work AFAICT, eg:

struct Bar {
    int aaab;
};

struct Foo {
    int aaaa;
    int f(){
        aa // now autocomplete shows both aaaa and aaab
    };
};

Or is that not what its doing.


You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.