summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/framing
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/qpid/framing')
-rw-r--r--cpp/src/qpid/framing/Uuid.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/framing/Uuid.h b/cpp/src/qpid/framing/Uuid.h
index 278a60c439..bce18f55b3 100644
--- a/cpp/src/qpid/framing/Uuid.h
+++ b/cpp/src/qpid/framing/Uuid.h
@@ -67,7 +67,7 @@ struct Uuid : public boost::array<uint8_t, 16> {
std::string str() const;
template <class S> void serialize(S& s) {
- s(static_cast<boost::array<uint8_t, 16>&>(*this));
+ s.raw(begin(), size());
}
};