diff options
Diffstat (limited to 'cpp/src/qpid/Serializer.h')
-rw-r--r-- | cpp/src/qpid/Serializer.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cpp/src/qpid/Serializer.h b/cpp/src/qpid/Serializer.h index 6b67a4ccf8..2660fb2b3e 100644 --- a/cpp/src/qpid/Serializer.h +++ b/cpp/src/qpid/Serializer.h @@ -167,6 +167,7 @@ template <class Derived> class DecoderBase : public Serializer<Derived> { /** Default op() for non-primitive types. */ template <class T> Derived& operator()(T& t) { + serializable(t).serialize(self()); return self(); } |