aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include/ParagraphParseResult.h
diff options
context:
space:
mode:
authorRobert Schumacher <roschuma@microsoft.com>2017-10-13 18:37:41 -0700
committerRobert Schumacher <roschuma@microsoft.com>2017-10-13 18:37:41 -0700
commite17de99599a2f114faab1bb4821fbaad4d266c95 (patch)
tree397fec8a85af3ef002c125ce013eceb60d27116d /toolsrc/include/ParagraphParseResult.h
parent1fb5313a881fe0fcfd90dff5255045c8367ee00b (diff)
downloadvcpkg-e17de99599a2f114faab1bb4821fbaad4d266c95.tar.gz
vcpkg-e17de99599a2f114faab1bb4821fbaad4d266c95.zip
[vcpkg] Re-layout all files using new organization scheme.
All filenames and directories are lowercase. Use dots for namespace separation.
Diffstat (limited to 'toolsrc/include/ParagraphParseResult.h')
-rw-r--r--toolsrc/include/ParagraphParseResult.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/toolsrc/include/ParagraphParseResult.h b/toolsrc/include/ParagraphParseResult.h
deleted file mode 100644
index eaa7e6327..000000000
--- a/toolsrc/include/ParagraphParseResult.h
+++ /dev/null
@@ -1,32 +0,0 @@
-#pragma once
-#include <system_error>
-
-namespace vcpkg
-{
- enum class ParagraphParseResult
- {
- SUCCESS = 0,
- EXPECTED_ONE_PARAGRAPH
- };
-
- struct ParagraphParseResultCategoryImpl final : std::error_category
- {
- virtual const char* name() const noexcept override;
-
- virtual std::string message(int ev) const noexcept override;
- };
-
- const std::error_category& paragraph_parse_result_category();
-
- std::error_code make_error_code(ParagraphParseResult e);
-
- ParagraphParseResult to_paragraph_parse_result(int i);
-
- ParagraphParseResult to_paragraph_parse_result(std::error_code ec);
-}
-
-// Enable implicit conversion to std::error_code
-template<>
-struct std::is_error_code_enum<vcpkg::ParagraphParseResult> : ::std::true_type
-{
-};