mirror of
https://github.com/debauchee/barrier.git
synced 2026-02-08 21:03:54 +08:00
for class visibility on pointers to member function 'using the qualifying scope of the name itself.' what this means is if method 'prot' is declared protected in class A and B inherits from A then a method in B cannot use &A::prot but can use &B::prot. Synergy now does this in the one place it had not.