[vcpkg] Fix ParagraphParser::required_field() (#12429)

This commit is contained in:
Maks Naumov 2020-07-16 00:42:45 +03:00 committed by GitHub
parent 38d635a8fe
commit 075a18b594
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -149,7 +149,7 @@ namespace vcpkg::Parse
{
std::string out;
TextRowCol ignore;
optional_field(fieldname, {out, ignore});
required_field(fieldname, {out, ignore});
return out;
}