| 175 | } |
| 176 | |
| 177 | static long long readAttrInt(const tinyxml2::XMLElement *e, const char *attr, bool *error) |
| 178 | { |
| 179 | int64_t value = 0; |
| 180 | const bool err = (e->QueryInt64Attribute(attr, &value) != tinyxml2::XML_SUCCESS); |
| 181 | if (error) |
| 182 | *error = err; |
| 183 | return value; |
| 184 | } |
| 185 | |
| 186 | bool CTU::FileInfo::CallBase::loadBaseFromXml(const tinyxml2::XMLElement *xmlElement) |
| 187 | { |
no outgoing calls
no test coverage detected