From: robertc <> Date: Sat, 6 May 2006 07:30:45 +0000 (+0000) Subject: Unbreak compiling on g++3.3 X-Git-Tag: SQUID_3_0_PRE4~191 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=be5852ba5a64d3891f8a348d87f44147b6b12fd4;p=thirdparty%2Fsquid.git Unbreak compiling on g++3.3 --- diff --git a/src/StoreEntryStream.h b/src/StoreEntryStream.h index 4ee1937a58..15e628cd34 100644 --- a/src/StoreEntryStream.h +++ b/src/StoreEntryStream.h @@ -1,6 +1,6 @@ /* - * $Id: StoreEntryStream.h,v 1.1 2006/05/03 14:04:44 robertc Exp $ + * $Id: StoreEntryStream.h,v 1.2 2006/05/06 01:30:45 robertc Exp $ * * * SQUID Web Proxy Cache http://www.squid-cache.org/ @@ -118,7 +118,7 @@ class StoreEntryStream : public std::ostream public: /* create a stream for writing text etc into anEntry */ - StoreEntryStream(StoreEntry *anEntry) : _buffer(anEntry) { this->init(&_buffer);} + StoreEntryStream(StoreEntry *anEntry) : std::ostream(&_buffer), _buffer(anEntry) { this->init(&_buffer);} private: StoreEntryStreamBuf _buffer;