From: Mark Slee Date: Sat, 16 Dec 2006 01:06:49 +0000 (+0000) Subject: message_ in TException can't be const or subclasses break X-Git-Tag: 0.2.0~1574 X-Git-Url: https://source.supwisdom.com/gerrit/gitweb?a=commitdiff_plain;h=2abc9dfd5901bbf8cf689c1edad67567b06070aa;p=common%2Fthrift.git 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 --- 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_; };