From: robertc <> Date: Mon, 11 Aug 2003 19:00:41 +0000 (+0000) Subject: Summary: Gcc-3.3-recent fix from ismail donmez. X-Git-Tag: SQUID_3_0_PRE3~21 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3a3c9dedbfcff8647311a7a237f4bc480dc58171;p=thirdparty%2Fsquid.git Summary: Gcc-3.3-recent fix from ismail donmez. Keywords: Hi, Patch attached! Regards, /ismail --- diff --git a/src/ACLChecklist.h b/src/ACLChecklist.h index 2d8a1208bc..fb6ae8b14e 100644 --- a/src/ACLChecklist.h +++ b/src/ACLChecklist.h @@ -1,6 +1,6 @@ /* - * $Id: ACLChecklist.h,v 1.16 2003/08/10 11:00:40 robertc Exp $ + * $Id: ACLChecklist.h,v 1.17 2003/08/11 13:00:41 robertc Exp $ * * * SQUID Web Proxy Cache http://www.squid-cache.org/ @@ -92,8 +92,8 @@ class NullState : public AsyncState void nonBlockingCheck(PF * callback, void *callback_data); void checkCallback(allow_t answer); - bool _SQUID_INLINE_ matchAclListFast(const acl_list * list); - void _SQUID_INLINE_ matchAclListSlow(const acl_list * list); + _SQUID_INLINE_ bool matchAclListFast(const acl_list * list); + _SQUID_INLINE_ void matchAclListSlow(const acl_list * list); ConnStateData::Pointer conn(); void conn(ConnStateData::Pointer); int authenticated();