FixIt don't switch to arrow in derrived members with using
Example code:
struct Bar { void foo(); }; struct Baz { using Bar::foo; }; void test(Baz* ptr) { ptr.^ }
Differential D131088
[clang] Apply FixIts to members declared via `using` in derived classes denis-fatkulin on Aug 3 2022, 12:05 PM. Authored by
Details FixIt don't switch to arrow in derrived members with using Example code: struct Bar { void foo(); }; struct Baz { using Bar::foo; }; void test(Baz* ptr) { ptr.^ }
Diff Detail
Event TimelineComment Actions thanks lgtm!
Comment Actions looks like you've uploaded the diff without context, can you upload it again with full context? also the changes to MaybeAddResult seem to be missing. |
can you also fix the constructor call here?