diff options
| author | Steve M. Robbins <smr@sumost.ca> | 2001-09-19 03:18:01 +0000 |
|---|---|---|
| committer | Steve M. Robbins <smr@sumost.ca> | 2001-09-19 03:18:01 +0000 |
| commit | 47441a7bf52a6e824db428baf0ce45238e0f4793 (patch) | |
| tree | b81f1e9c7056edb825d224abe45747e92ec411b2 /include/cppunit | |
| parent | 91ed0b41be469e1d27efeadb31350844eadcd21b (diff) | |
| download | cppunit-47441a7bf52a6e824db428baf0ce45238e0f4793.tar.gz | |
Changes in response to bug reports.
Diffstat (limited to 'include/cppunit')
| -rw-r--r-- | include/cppunit/Portability.h | 4 | ||||
| -rw-r--r-- | include/cppunit/TextTestResult.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/include/cppunit/Portability.h b/include/cppunit/Portability.h index 3d3e60f..17fdbf8 100644 --- a/include/cppunit/Portability.h +++ b/include/cppunit/Portability.h @@ -53,8 +53,8 @@ std::string str() { (*this) << '\0'; - std::string msg(ostrstream::str()); - ostrstream::freeze(false); + std::string msg(std::ostrstream::str()); + std::ostrstream::freeze(false); return msg; } }; diff --git a/include/cppunit/TextTestResult.h b/include/cppunit/TextTestResult.h index 8c41055..f238826 100644 --- a/include/cppunit/TextTestResult.h +++ b/include/cppunit/TextTestResult.h @@ -1,7 +1,7 @@ #ifndef CPPUNIT_TEXTTESTRESULT_H #define CPPUNIT_TEXTTESTRESULT_H -#include <iosfwd> +#include <iostream> #include <cppunit/TestResult.h> namespace CppUnit { |
