Commit 1829edfb authored by Dominik Charousset's avatar Dominik Charousset

Add missing inspect overload

parent 0867f98c
...@@ -147,6 +147,14 @@ public: ...@@ -147,6 +147,14 @@ public:
return value_; return value_;
} }
// -- serialization ----------------------------------------------------------
template <class Inspector>
friend typename Inspector::result_type inspect(Inspector& f,
outbound_stream_slot& x) {
return f(x.value_);
}
private: private:
stream_slot value_; stream_slot value_;
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment