Commit 8a6cbdae authored by Dominik Charousset's avatar Dominik Charousset

Add value type typedef to stream<T>

parent b0deb598
......@@ -30,7 +30,10 @@ namespace caf {
/// Empty marker type for streaming handshakes.
template <class T>
class stream {};
class stream {
public:
using value_type = T;
};
} // namespace caf
......
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