From 7930ede67294af54cc7aa02fe89b10a18682a8a1 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@565925 13f79535-47bb-0310-9956-ffa450edef68 --- qpid/cpp/src/qpid/Msg.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'qpid/cpp') diff --git a/qpid/cpp/src/qpid/Msg.h b/qpid/cpp/src/qpid/Msg.h index 702bb0a10e..c1a6b54d05 100644 --- a/qpid/cpp/src/qpid/Msg.h +++ b/qpid/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)<