From 4ed67edf330b5d01e1483195cbc5f018f14551e5 Mon Sep 17 00:00:00 2001 From: Alan Conway Date: Tue, 14 Aug 2007 21:36:33 +0000 Subject: Fix compile error. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@565925 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/src/qpid/Msg.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpp/src') diff --git a/cpp/src/qpid/Msg.h b/cpp/src/qpid/Msg.h index 702bb0a10e..c1a6b54d05 100644 --- a/cpp/src/qpid/Msg.h +++ b/cpp/src/qpid/Msg.h @@ -45,7 +45,7 @@ struct Msg { operator std::string() const { return str(); } }; -inline template const Msg& operator<<(const Msg& m, const T& t) { +template const Msg& operator<<(const Msg& m, const T& t) { const_cast(m.os)<