diff options
| author | Baptiste Lepilleur <gaiacrtn@free.fr> | 2002-12-03 19:47:58 +0000 |
|---|---|---|
| committer | Baptiste Lepilleur <gaiacrtn@free.fr> | 2002-12-03 19:47:58 +0000 |
| commit | 5f4e8a237df7cbcb014fa632119fda3b8d32e64a (patch) | |
| tree | 6550cb658a68febda701bd50643b5558f055bec9 | |
| parent | 7b97d82c4e077d37db5471d38c3e83b05943e240 (diff) | |
| download | cppunit-5f4e8a237df7cbcb014fa632119fda3b8d32e64a.tar.gz | |
include/cppunit/TextTestResult.h: added missing dll export for
operator << (bug #610119).
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | NEWS | 2 | ||||
| -rw-r--r-- | examples/examples.opt | bin | 159232 -> 214016 bytes | |||
| -rw-r--r-- | include/cppunit/TextTestResult.h | 4 |
4 files changed, 9 insertions, 2 deletions
@@ -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 @@ -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 Binary files differindex d081d46..16114bd 100644 --- a/examples/examples.opt +++ b/examples/examples.opt 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 |
