Unserialize

Deleted overload that forbids unserializing char; use uint8_t or int8_t instead.

Synopsis

Declared in <serialize.h>

template<
    typename Stream,
    CharNotInt8 V>
void
Unserialize(
    Stream& s,
    V v) = delete;

Parameters

NameDescription
sThe input stream.
vThe char value that must not be unserialized.