]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Fix clang compile error in acl/Gadgets.h
authorAmos Jeffries <squid3@treenet.co.nz>
Thu, 10 Jan 2013 01:00:54 +0000 (14:00 +1300)
committerAmos Jeffries <squid3@treenet.co.nz>
Thu, 10 Jan 2013 01:00:54 +0000 (14:00 +1300)
Since rev.12562 dlink_list is a class not a struct.

Detected by Squi dbuild farm FreeBSD 9.x node.

src/acl/Gadgets.h

index 49786b5e54bb30084ee5060a916e14a99b1e9e98..d59175cae28c3a2d1de213eeb301aff2a663fe92 100644 (file)
@@ -3,12 +3,12 @@
 
 #include "err_type.h"
 
-struct dlink_list;
 class acl_access;
 class ACL;
 class AclDenyInfoList;
 class ACLList;
 class ConfigParser;
+class dlink_list;
 class StoreEntry;
 class wordlist;