aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include/StatusParagraphs.h
diff options
context:
space:
mode:
authorRobert Schumacher <roschuma@microsoft.com>2017-04-14 16:07:54 -0700
committerRobert Schumacher <roschuma@microsoft.com>2017-04-14 16:07:54 -0700
commit20397fc845fac398a1aca2ee17ce5b932fc1a83b (patch)
tree51235bc2602a81a89da9605272a37ca4fc1765a8 /toolsrc/include/StatusParagraphs.h
parent8183671a492aa21ec20780a77f923848b0aeca41 (diff)
parent1c08a42091cb0addd1e0c1daf27d24bf4e9d237f (diff)
downloadvcpkg-20397fc845fac398a1aca2ee17ce5b932fc1a83b.tar.gz
vcpkg-20397fc845fac398a1aca2ee17ce5b932fc1a83b.zip
Merge branch 'dev/roschuma/fs-testing'
Diffstat (limited to 'toolsrc/include/StatusParagraphs.h')
-rw-r--r--toolsrc/include/StatusParagraphs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/toolsrc/include/StatusParagraphs.h b/toolsrc/include/StatusParagraphs.h
index c5ece9616..fcfe99b5a 100644
--- a/toolsrc/include/StatusParagraphs.h
+++ b/toolsrc/include/StatusParagraphs.h
@@ -29,7 +29,7 @@ namespace vcpkg
iterator insert(std::unique_ptr<StatusParagraph>);
- friend std::ostream& operator<<(std::ostream&, const StatusParagraphs&);
+ friend void serialize(const StatusParagraphs& pgh, std::string& out_str);
iterator end()
{
@@ -55,5 +55,5 @@ namespace vcpkg
std::vector<std::unique_ptr<StatusParagraph>> paragraphs;
};
- std::ostream& operator<<(std::ostream&, const StatusParagraphs&);
+ void serialize(const StatusParagraphs& pgh, std::string& out_str);
}