diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2017-04-03 14:48:24 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2017-04-04 16:44:41 -0700 |
| commit | 7ee180ebdd7ec93a4ba3c34c38fd467109365ad6 (patch) | |
| tree | 4a1cc5eec64304e59819fdd712fbbcc40d786ced /toolsrc/src/Paragraphs.cpp | |
| parent | 83cde513345f5544325520b89ec3f1f27bd8b2a6 (diff) | |
| download | vcpkg-7ee180ebdd7ec93a4ba3c34c38fd467109365ad6.tar.gz vcpkg-7ee180ebdd7ec93a4ba3c34c38fd467109365ad6.zip | |
paragraph_parse_result -> ParagraphParseResult
Diffstat (limited to 'toolsrc/src/Paragraphs.cpp')
| -rw-r--r-- | toolsrc/src/Paragraphs.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/toolsrc/src/Paragraphs.cpp b/toolsrc/src/Paragraphs.cpp index d6784bc63..0d91e95a9 100644 --- a/toolsrc/src/Paragraphs.cpp +++ b/toolsrc/src/Paragraphs.cpp @@ -1,7 +1,7 @@ #include "pch.h" #include "Paragraphs.h" #include "vcpkg_Files.h" -#include "paragraph_parse_result.h" +#include "ParagraphParseResult.h" namespace vcpkg::Paragraphs { @@ -203,7 +203,7 @@ namespace vcpkg::Paragraphs return p.at(0); } - return std::error_code(paragraph_parse_result::EXPECTED_ONE_PARAGRAPH); + return std::error_code(ParagraphParseResult::EXPECTED_ONE_PARAGRAPH); } expected<std::vector<std::unordered_map<std::string, std::string>>> parse_paragraphs(const std::string& str) |
