From 47441a7bf52a6e824db428baf0ce45238e0f4793 Mon Sep 17 00:00:00 2001 From: "Steve M. Robbins" Date: Wed, 19 Sep 2001 03:18:01 +0000 Subject: Changes in response to bug reports. --- include/cppunit/Portability.h | 4 ++-- include/cppunit/TextTestResult.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'include/cppunit') 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 +#include #include namespace CppUnit { -- cgit v1.2.1