]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Unbreak compiling on g++3.3
authorrobertc <>
Sat, 6 May 2006 07:30:45 +0000 (07:30 +0000)
committerrobertc <>
Sat, 6 May 2006 07:30:45 +0000 (07:30 +0000)
src/StoreEntryStream.h

index 4ee1937a58d7ada194b85a78ec0268a277bfcd60..15e628cd3403e9ebfa21a362a33124f2b8958b95 100644 (file)
@@ -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;