]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Summary: g++ 2.95 friendly classes.
authorrobertc <>
Tue, 4 Mar 2003 13:22:12 +0000 (13:22 +0000)
committerrobertc <>
Tue, 4 Mar 2003 13:22:12 +0000 (13:22 +0000)
Keywords:

g++ doesn't support some constructs quite 'right'.

src/delay_pools.cc

index cf0014b386b6c37ca372a51985417d3269c68f2c..556f6f798baada95af899a778f3f644ac998ccca 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: delay_pools.cc,v 1.35 2003/03/04 01:40:27 robertc Exp $
+ * $Id: delay_pools.cc,v 1.36 2003/03/04 06:22:12 robertc Exp $
  *
  * DEBUG: section 77    Delay Pools
  * AUTHOR: Robert Collins <robertc@squid-cache.org>
@@ -115,6 +115,8 @@ class AggregateId:public DelayIdComposite
         Aggregate::Pointer theAggregate;
     };
 
+    friend class AggregateId;
+
     DelayBucket theBucket;
     DelaySpec spec;
 };