aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include/VersionT.h
diff options
context:
space:
mode:
Diffstat (limited to 'toolsrc/include/VersionT.h')
-rw-r--r--toolsrc/include/VersionT.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/toolsrc/include/VersionT.h b/toolsrc/include/VersionT.h
deleted file mode 100644
index 67efd8da3..000000000
--- a/toolsrc/include/VersionT.h
+++ /dev/null
@@ -1,29 +0,0 @@
-#pragma once
-#include <string>
-
-namespace vcpkg
-{
- struct VersionT
- {
- VersionT();
- VersionT(const std::string& value);
-
- std::string to_string() const;
-
- std::string value;
- };
-
- bool operator==(const VersionT& left, const VersionT& right);
- bool operator!=(const VersionT& left, const VersionT& right);
-
- struct VersionDiff
- {
- VersionT left;
- VersionT right;
-
- VersionDiff();
- VersionDiff(const VersionT& left, const VersionT& right);
-
- std::string to_string() const;
- };
-}