diff options
author | eldritch horrors <pennae@lix.systems> | 2024-03-07 12:37:33 +0100 |
---|---|---|
committer | eldritch horrors <pennae@lix.systems> | 2024-03-07 12:37:33 +0100 |
commit | 8a268359b06471b463a8f3fc46c83a1fced8ab75 (patch) | |
tree | b9a854b5faf432d158a449ec3f14146e4e6db00d /src/libstore/serve-protocol.hh | |
parent | 9eb58f5209f9cd1fd18f33b691c6a613075dffc4 (diff) |
Merge pull request #9560 from obsidiansystems/serve-proto-unkeyed-valid-path-info-serializer
Factor out `ServeProto::Serialiser<UnkeyedValidPathInfo>` and test
(cherry picked from commit 139982997eec493a0f74105c427953f6be77da6d)
Change-Id: I28e4ba5a681a90d81915a56e6dbaa5456d64f96d
Diffstat (limited to 'src/libstore/serve-protocol.hh')
-rw-r--r-- | src/libstore/serve-protocol.hh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/libstore/serve-protocol.hh b/src/libstore/serve-protocol.hh index ba159f6e9..3f82c8177 100644 --- a/src/libstore/serve-protocol.hh +++ b/src/libstore/serve-protocol.hh @@ -18,6 +18,7 @@ struct Source; // items being serialised struct BuildResult; +struct UnkeyedValidPathInfo; /** @@ -141,6 +142,8 @@ inline std::ostream & operator << (std::ostream & s, ServeProto::Command op) template<> DECLARE_SERVE_SERIALISER(BuildResult); +template<> +DECLARE_SERVE_SERIALISER(UnkeyedValidPathInfo); template<typename T> DECLARE_SERVE_SERIALISER(std::vector<T>); |