| 1080 | } |
| 1081 | |
| 1082 | bool isAnonymous() const { |
| 1083 | // TODO: Check if class/struct is anonymous |
| 1084 | return className.size() > 9 && startsWith(className,"Anonymous") && std::isdigit(className[9]); |
| 1085 | } |
| 1086 | |
| 1087 | const Enumerator * findEnumerator(const std::string & name) const { |
| 1088 | auto it = std::find_if(enumeratorList.cbegin(), enumeratorList.cend(), [&](const Enumerator& i) { |
nothing calls this directly
no test coverage detected