| 2080 | } |
| 2081 | |
| 2082 | const Library::PodType *Library::podtype(const std::string &name) const |
| 2083 | { |
| 2084 | const auto it = utils::as_const(mData->mPodTypes).find(name); |
| 2085 | return (it != mData->mPodTypes.end()) ? &(it->second) : nullptr; |
| 2086 | } |
| 2087 | |
| 2088 | const Library::PlatformType *Library::platform_type(const std::string &name, const std::string & platform) const |
| 2089 | { |
no test coverage detected