summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBaptiste Lepilleur <gaiacrtn@free.fr>2002-12-03 19:47:58 +0000
committerBaptiste Lepilleur <gaiacrtn@free.fr>2002-12-03 19:47:58 +0000
commit5f4e8a237df7cbcb014fa632119fda3b8d32e64a (patch)
tree6550cb658a68febda701bd50643b5558f055bec9
parent7b97d82c4e077d37db5471d38c3e83b05943e240 (diff)
downloadcppunit-5f4e8a237df7cbcb014fa632119fda3b8d32e64a.tar.gz
include/cppunit/TextTestResult.h: added missing dll export for
operator << (bug #610119).
-rw-r--r--ChangeLog5
-rw-r--r--NEWS2
-rw-r--r--examples/examples.optbin159232 -> 214016 bytes
-rw-r--r--include/cppunit/TextTestResult.h4
4 files changed, 9 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 74a6383..4783ef7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2002-12-03 Baptiste Lepilleur <gaiacrtn@free.fr>
+
+ * include/cppunit/TextTestResult.h: added missing dll export for
+ operator << (bug #610119).
+
2002-12-02 Baptiste Lepilleur <gaiacrtn@free.fr>
* include/cppunit/plugin/DynamicLibraryManagerException.h: added constructor
diff --git a/NEWS b/NEWS
index f9595c6..d5a5e7a 100644
--- a/NEWS
+++ b/NEWS
@@ -17,6 +17,8 @@
- Missing destructor with no throw specification for
DynamicLibraryManagerException. Bug #619059.
+ - Fixed missing export for operator <<(TextTestResult). Bug #610119.
+
New in CppUnit 1.9.10:
---------------------
diff --git a/examples/examples.opt b/examples/examples.opt
index d081d46..16114bd 100644
--- a/examples/examples.opt
+++ b/examples/examples.opt
Binary files differ
diff --git a/include/cppunit/TextTestResult.h b/include/cppunit/TextTestResult.h
index 53d1021..dc666c6 100644
--- a/include/cppunit/TextTestResult.h
+++ b/include/cppunit/TextTestResult.h
@@ -29,8 +29,8 @@ public:
};
/** insertion operator for easy output */
-std::ostream &operator <<( std::ostream &stream,
- TextTestResult &result );
+CPPUNIT_API std::ostream &operator <<( std::ostream &stream,
+ TextTestResult &result );
CPPUNIT_NS_END