From 2abc9dfd5901bbf8cf689c1edad67567b06070aa Mon Sep 17 00:00:00 2001 From: Mark Slee Date: Sat, 16 Dec 2006 01:06:49 +0000 Subject: [PATCH] message_ in TException can't be const or subclasses break Reviewed By: yishan git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@664898 13f79535-47bb-0310-9956-ffa450edef68 --- lib/cpp/src/Thrift.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cpp/src/Thrift.h b/lib/cpp/src/Thrift.h index 89b37d04..6174d466 100644 --- a/lib/cpp/src/Thrift.h +++ b/lib/cpp/src/Thrift.h @@ -32,7 +32,7 @@ public: } private: - const std::string message_; + std::string message_; }; -- 2.17.1