diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2017-04-07 17:56:26 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2017-04-07 17:56:26 -0700 |
| commit | 599c22f2affc863ab4acebbc465c563c6fe11d8b (patch) | |
| tree | 823f339284e8743bb6a586cebfb46b840a1dc9ee /toolsrc/include/VersionT.h | |
| parent | 12f09d3151b44571ce64217ca4f6c5958d249cd6 (diff) | |
| download | vcpkg-599c22f2affc863ab4acebbc465c563c6fe11d8b.tar.gz vcpkg-599c22f2affc863ab4acebbc465c563c6fe11d8b.zip | |
VersionT: replace to_printf_arg() with .to_string()
Diffstat (limited to 'toolsrc/include/VersionT.h')
| -rw-r--r-- | toolsrc/include/VersionT.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/toolsrc/include/VersionT.h b/toolsrc/include/VersionT.h index aa2635855..36d050e08 100644 --- a/toolsrc/include/VersionT.h +++ b/toolsrc/include/VersionT.h @@ -8,12 +8,13 @@ namespace vcpkg 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); - std::string to_printf_arg(const VersionT& version); struct VersionDiff { |
