commit | 2abc9dfd5901bbf8cf689c1edad67567b06070aa | [log] [tgz] |
---|---|---|
author | Mark Slee <mcslee@apache.org> | Sat Dec 16 01:06:49 2006 +0000 |
committer | Mark Slee <mcslee@apache.org> | Sat Dec 16 01:06:49 2006 +0000 |
tree | b1749a8c80a7a80f4a896ad8eaaa7b1229681d02 | |
parent | 706da402370eb6bb24a22394bd198bfcbe65dcb4 [diff] |
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 89b37d0..6174d46 100644 --- a/lib/cpp/src/Thrift.h +++ b/lib/cpp/src/Thrift.h
@@ -32,7 +32,7 @@ } private: - const std::string message_; + std::string message_; };