Closed deadlocklogic closed 2 years ago
As the title says consider:
class A { public: void a(); }; // Impl void A::a() { }
Is there a way to check if a (Impl) is an outer member function definition? (without creating a manual hierarchy)? @foonathan Any thoughts?
a
Ok cpp_forward_declarable::semantic_parent does the job. Thanks!
cpp_forward_declarable::semantic_parent
As the title says consider:
Is there a way to check if
a
(Impl) is an outer member function definition? (without creating a manual hierarchy)? @foonathan Any thoughts?