aboutsummaryrefslogtreecommitdiff
path: root/test/cxxtest/cxxtest/ErrorFormatter.h
diff options
context:
space:
mode:
Diffstat (limited to 'test/cxxtest/cxxtest/ErrorFormatter.h')
-rw-r--r--test/cxxtest/cxxtest/ErrorFormatter.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/cxxtest/cxxtest/ErrorFormatter.h b/test/cxxtest/cxxtest/ErrorFormatter.h
index dca09bc7be..3c5b2b5dbe 100644
--- a/test/cxxtest/cxxtest/ErrorFormatter.h
+++ b/test/cxxtest/cxxtest/ErrorFormatter.h
@@ -25,7 +25,7 @@ namespace CxxTest
virtual OutputStream &operator<<( const char * /*string*/ ) { return *this; }
typedef void (*Manipulator)( OutputStream & );
-
+
virtual OutputStream &operator<<( Manipulator m ) { m( *this ); return *this; }
static void endl( OutputStream &o ) { (o << "\n").flush(); }
};
@@ -213,7 +213,7 @@ namespace CxxTest
private:
ErrorFormatter( const ErrorFormatter & );
ErrorFormatter &operator=( const ErrorFormatter & );
-
+
OutputStream &stop( const char *file, unsigned line )
{
newLine();
@@ -249,7 +249,7 @@ namespace CxxTest
{
(*_o) << " (null)" << endl;
}
-
+
void dumpBuffer( const void *buffer, unsigned size )
{
unsigned dumpSize = size;