diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2022-01-17 19:28:42 +0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2022-01-17 22:20:23 +0100 |
commit | 776eb97a4328ccfacbd4e795b4659b7367838db0 (patch) | |
tree | cb7392197526d041b8da783ea1cb8253168b0c22 /src/libutil/serialise.hh | |
parent | 008ddef4b08e9bee530a5a4c597c88b344089021 (diff) |
serialise.hh: Use std::string_view
Diffstat (limited to 'src/libutil/serialise.hh')
-rw-r--r-- | src/libutil/serialise.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libutil/serialise.hh b/src/libutil/serialise.hh index 0fe6e8332..b3cfb06a2 100644 --- a/src/libutil/serialise.hh +++ b/src/libutil/serialise.hh @@ -317,10 +317,10 @@ inline Sink & operator << (Sink & sink, uint64_t n) return sink; } -Sink & operator << (Sink & sink, const string & s); +Sink & operator << (Sink & in, const Error & ex); +Sink & operator << (Sink & sink, std::string_view s); Sink & operator << (Sink & sink, const Strings & s); Sink & operator << (Sink & sink, const StringSet & s); -Sink & operator << (Sink & in, const Error & ex); MakeError(SerialisationError, Error); |