diff options
| author | Maks Naumov <maksqwe1@ukr.net> | 2020-07-16 00:42:45 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-15 14:42:45 -0700 |
| commit | 075a18b594d6ce45772bb056c1bd60732a0ebd4b (patch) | |
| tree | 951630f97cf46d38fdb550bdd96cb69cff23df15 | |
| parent | 38d635a8fefb246de701f52bb7fc28fa4850ab15 (diff) | |
| download | vcpkg-075a18b594d6ce45772bb056c1bd60732a0ebd4b.tar.gz vcpkg-075a18b594d6ce45772bb056c1bd60732a0ebd4b.zip | |
[vcpkg] Fix ParagraphParser::required_field() (#12429)
| -rw-r--r-- | toolsrc/src/vcpkg/base/parse.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolsrc/src/vcpkg/base/parse.cpp b/toolsrc/src/vcpkg/base/parse.cpp index 4d1063cfb..7d6576f41 100644 --- a/toolsrc/src/vcpkg/base/parse.cpp +++ b/toolsrc/src/vcpkg/base/parse.cpp @@ -149,7 +149,7 @@ namespace vcpkg::Parse { std::string out; TextRowCol ignore; - optional_field(fieldname, {out, ignore}); + required_field(fieldname, {out, ignore}); return out; } |
