Fix '-Wpedantic' warnings under gcc 10.x

This commit is contained in:
Vittorio Romeo
2021-04-11 00:59:05 +01:00
committed by Ethan Lee
parent 6e1054e362
commit 082a0c2205
3 changed files with 16 additions and 16 deletions

View File

@@ -195,14 +195,14 @@ static std::string NAME(const std::string& buf) \
return find_tag(buf, "<" TAG ">", "</" TAG ">"); \
}
TAG_FINDER(find_metadata, "MetaData"); //only for checking that it exists
TAG_FINDER(find_metadata, "MetaData") //only for checking that it exists
TAG_FINDER(find_creator, "Creator");
TAG_FINDER(find_title, "Title");
TAG_FINDER(find_desc1, "Desc1");
TAG_FINDER(find_desc2, "Desc2");
TAG_FINDER(find_desc3, "Desc3");
TAG_FINDER(find_website, "website");
TAG_FINDER(find_creator, "Creator")
TAG_FINDER(find_title, "Title")
TAG_FINDER(find_desc1, "Desc1")
TAG_FINDER(find_desc2, "Desc2")
TAG_FINDER(find_desc3, "Desc3")
TAG_FINDER(find_website, "website")
#undef TAG_FINDER