From eb45ed5761dabf297c128b6f16c49c07b73e42e3 Mon Sep 17 00:00:00 2001 From: Amos Jeffries Date: Thu, 10 Jan 2013 14:00:54 +1300 Subject: [PATCH] Fix clang compile error in acl/Gadgets.h Since rev.12562 dlink_list is a class not a struct. Detected by Squi dbuild farm FreeBSD 9.x node. --- src/acl/Gadgets.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/acl/Gadgets.h b/src/acl/Gadgets.h index 49786b5e54..d59175cae2 100644 --- a/src/acl/Gadgets.h +++ b/src/acl/Gadgets.h @@ -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; -- 2.47.3