| 54 | |
| 55 | template <typename Desc> |
| 56 | static int CompareClassNames(const char* const aname, const Desc& b) |
| 57 | { |
| 58 | // ++ to get past the prefix letter of the native class name, which gets omitted by the FName for the class. |
| 59 | const char* bname = b.ClassName; |
| 60 | if ('\0' != *bname) ++bname; |
| 61 | return stricmp(aname, bname); |
| 62 | } |
| 63 | |
| 64 | template <typename Desc> |
| 65 | static int CompareClassNames(const Desc& a, const Desc& b) |
no test coverage detected