diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2017-04-03 16:13:46 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2017-04-04 16:44:43 -0700 |
| commit | b766a005b7a67d7adeadc16e765bda34d679f45d (patch) | |
| tree | 6be231a8b87203399bc22dc90478597d2e844edb /toolsrc/include/version_t.h | |
| parent | 5b0d9f3ee000446550c72dd2cbaa4c95ae976ac6 (diff) | |
| download | vcpkg-b766a005b7a67d7adeadc16e765bda34d679f45d.tar.gz vcpkg-b766a005b7a67d7adeadc16e765bda34d679f45d.zip | |
version_t -> VersionT
Diffstat (limited to 'toolsrc/include/version_t.h')
| -rw-r--r-- | toolsrc/include/version_t.h | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/toolsrc/include/version_t.h b/toolsrc/include/version_t.h deleted file mode 100644 index 9a4e11a39..000000000 --- a/toolsrc/include/version_t.h +++ /dev/null @@ -1,28 +0,0 @@ -#pragma once -#include <string> - -namespace vcpkg -{ - struct version_t - { - version_t(); - version_t(const std::string& value); - - std::string value; - }; - - bool operator ==(const version_t& left, const version_t& right); - bool operator !=(const version_t& left, const version_t& right); - std::string to_printf_arg(const version_t& version); - - struct version_diff_t - { - version_t left; - version_t right; - - version_diff_t(); - version_diff_t(const version_t& left, const version_t& right); - - std::string toString() const; - }; -} |
