aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include/StatusParagraph.h
diff options
context:
space:
mode:
authorRobert Schumacher <roschuma@microsoft.com>2017-06-17 02:39:14 -0700
committerRobert Schumacher <roschuma@microsoft.com>2017-06-20 09:36:21 -0700
commit8741214bf69d1209a1e6d405ed8561d27f04436a (patch)
tree85325eb4b2d2c1c15eb8bd58426dac5462242d4e /toolsrc/include/StatusParagraph.h
parent8c4d55b8f304c74aeb95878cfe354830ff4abc88 (diff)
downloadvcpkg-8741214bf69d1209a1e6d405ed8561d27f04436a.tar.gz
vcpkg-8741214bf69d1209a1e6d405ed8561d27f04436a.zip
[vcpkg] Use unique_ptr<> for paragraphs. Post-parser phase rework.
Diffstat (limited to 'toolsrc/include/StatusParagraph.h')
-rw-r--r--toolsrc/include/StatusParagraph.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/toolsrc/include/StatusParagraph.h b/toolsrc/include/StatusParagraph.h
index 2d1815dc0..b56533d65 100644
--- a/toolsrc/include/StatusParagraph.h
+++ b/toolsrc/include/StatusParagraph.h
@@ -29,7 +29,7 @@ namespace vcpkg
struct StatusParagraph
{
StatusParagraph();
- explicit StatusParagraph(const std::unordered_map<std::string, std::string>& fields);
+ explicit StatusParagraph(std::unordered_map<std::string, std::string>&& fields);
BinaryParagraph package;
Want want;