From: robertc <> Date: Tue, 4 Mar 2003 13:22:12 +0000 (+0000) Subject: Summary: g++ 2.95 friendly classes. X-Git-Tag: SQUID_3_0_PRE1~282 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f5e92ca2d6fbf05c657c692f27828d2436157183;p=thirdparty%2Fsquid.git Summary: g++ 2.95 friendly classes. Keywords: g++ doesn't support some constructs quite 'right'. --- diff --git a/src/delay_pools.cc b/src/delay_pools.cc index cf0014b386..556f6f798b 100644 --- a/src/delay_pools.cc +++ b/src/delay_pools.cc @@ -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 @@ -115,6 +115,8 @@ class AggregateId:public DelayIdComposite Aggregate::Pointer theAggregate; }; + friend class AggregateId; + DelayBucket theBucket; DelaySpec spec; };