[cppunit] Fix for bug 452340

Steven M. Parrish tuxbrewr at fedoraproject.org
Tue Jun 28 12:03:03 UTC 2011


commit 2de5e766d0706eccadd58bd25c565b76420d69e2
Author: Steven M. Parrish <smparrish at gmail.com>
Date:   Tue Jun 28 08:01:50 2011 -0400

    Fix for bug 452340

 cppunit-msg.patch |   24 ++++++++++++++++++++++++
 1 files changed, 24 insertions(+), 0 deletions(-)
---
diff --git a/cppunit-msg.patch b/cppunit-msg.patch
new file mode 100644
index 0000000..9f41649
--- /dev/null
+++ b/cppunit-msg.patch
@@ -0,0 +1,24 @@
+--- cppunit-1.12.1/include/cppunit/Message.h.dt	2010-10-08 14:02:26.514477964 +0200
++++ cppunit-1.12.1/include/cppunit/Message.h.dt	2010-10-08 14:02:15.411948098 +0200
+@@ -57,6 +57,8 @@ public:
+            const std::string &detail2,
+            const std::string &detail3 );
+
++  ~Message();
++
+   Message &operator =( const Message &other );
+
+   /*! \brief Returns the short description.
+--- cppunit-1.12.1/src/cppunit/Message.cpp.dt	2010-10-08 14:02:39.421768852 +0200
++++ cppunit-1.12.1/src/cppunit/Message.cpp.dt	2010-10-08 14:02:54.066829633 +0200
+@@ -47,6 +47,10 @@ Message::Message( const std::string &sho
+   addDetail( detail1, detail2, detail3 );
+ }
+
++Message::~Message()
++{
++}
++
+ Message &
+ Message::operator =( const Message &other )
+ {


More information about the scm-commits mailing list