aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include
diff options
context:
space:
mode:
Diffstat (limited to 'toolsrc/include')
-rw-r--r--toolsrc/include/vcpkg/paragraphparseresult.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/toolsrc/include/vcpkg/paragraphparseresult.h b/toolsrc/include/vcpkg/paragraphparseresult.h
deleted file mode 100644
index 558715bbc..000000000
--- a/toolsrc/include/vcpkg/paragraphparseresult.h
+++ /dev/null
@@ -1,36 +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);
-}
-
-namespace std
-{
- // Enable implicit conversion to std::error_code
- template<>
- struct is_error_code_enum<vcpkg::ParagraphParseResult> : ::std::true_type
- {
- };
-} \ No newline at end of file