diff options
| author | atkawa7 <atkawa7@yahoo.com> | 2018-01-27 00:44:07 +0200 |
|---|---|---|
| committer | Alexander Karatarakis <alex@karatarakis.com> | 2018-01-26 14:44:07 -0800 |
| commit | 75f19a58ba27f79da4c57d22e4a9e92afcb55d4c (patch) | |
| tree | 025861ac22693fb42b20eb3ca31088ef97ed4405 /toolsrc/include | |
| parent | 884afaa9ce1b3fb578a337acbeb0a4ba174cd133 (diff) | |
| download | vcpkg-75f19a58ba27f79da4c57d22e4a9e92afcb55d4c.tar.gz vcpkg-75f19a58ba27f79da4c57d22e4a9e92afcb55d4c.zip | |
[vcpkg] Add string constructor (#2429)
* [vcpkg] Add string constructor
* Update versiont.h
Diffstat (limited to 'toolsrc/include')
| -rw-r--r-- | toolsrc/include/vcpkg/versiont.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/toolsrc/include/vcpkg/versiont.h b/toolsrc/include/vcpkg/versiont.h index 6d8332521..8427dfe3b 100644 --- a/toolsrc/include/vcpkg/versiont.h +++ b/toolsrc/include/vcpkg/versiont.h @@ -6,6 +6,7 @@ namespace vcpkg struct VersionT { VersionT(); + VersionT(std::string&& value); VersionT(const std::string& value); const std::string& to_string() const; |
