Skip to content

Commit e03ef93

Browse files
committed
Fix compiler error
1 parent e6d1b44 commit e03ef93

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/ctu.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ static std::string readAttrString(const tinyxml2::XMLElement *e, const char *att
172172
static long long readAttrInt(const tinyxml2::XMLElement *e, const char *attr, bool *error)
173173
{
174174
int64_t value = 0;
175-
bool err = (e->QueryInt64Attribute(attr, &value) != XML_SUCCESS);
175+
bool err = (e->QueryInt64Attribute(attr, &value) != tinyxml2::XML_SUCCESS);
176176
if (error)
177177
*error = err;
178178
return value;

0 commit comments

Comments
 (0)