aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include/Version.h
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-04-27 17:56:06 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2017-04-27 18:59:57 -0700
commit75e8752cb90eb8bc7717518d9d6a5c68f27f2b0f (patch)
treeb3a8c01beebba2b7e5524363b59bfc088aab83a2 /toolsrc/include/Version.h
parentdb2bc7ed80cd85935bcf80a02a06c796d01197b7 (diff)
downloadvcpkg-75e8752cb90eb8bc7717518d9d6a5c68f27f2b0f.tar.gz
vcpkg-75e8752cb90eb8bc7717518d9d6a5c68f27f2b0f.zip
Run clang-format over the headers. Remove stray Version.h/cpp. Fix location of VersionT.cpp
Diffstat (limited to 'toolsrc/include/Version.h')
-rw-r--r--toolsrc/include/Version.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/toolsrc/include/Version.h b/toolsrc/include/Version.h
deleted file mode 100644
index 9d81ce829..000000000
--- a/toolsrc/include/Version.h
+++ /dev/null
@@ -1,28 +0,0 @@
-#pragma once
-#include <string>
-
-namespace vcpkg
-{
- struct Version
- {
- Version();
- Version(const std::string& value);
-
- std::string value;
- };
-
- bool operator ==(const Version& left, const Version& right);
- bool operator !=(const Version& left, const Version& right);
- std::string to_printf_arg(const Version& version);
-
- struct version_diff_t
- {
- Version left;
- Version right;
-
- version_diff_t();
- version_diff_t(const Version& left, const Version& right);
-
- std::string toString() const;
- };
-}