| 2811 | } |
| 2812 | |
| 2813 | static InterfacePair MakeInterfacePair(BfTypeInstance* iface1, BfTypeInstance* iface2) |
| 2814 | { |
| 2815 | if (iface1->mTypeId < iface2->mTypeId) |
| 2816 | return InterfacePair(iface1, iface2); |
| 2817 | return InterfacePair(iface2, iface1); |
| 2818 | } |
| 2819 | |
| 2820 | struct InterfacePairHash |
| 2821 | { |
no outgoing calls
no test coverage detected