From c77eccee5c4e2b76c226179cb1b00b9116889978 Mon Sep 17 00:00:00 2001 From: Christian Hofstaedtler Date: Thu, 22 Sep 2016 18:35:02 +0200 Subject: [PATCH] Fix struct/class mismatch warning reported by apple clang 800.0.38 --- pdns/misc.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pdns/misc.hh b/pdns/misc.hh index 225d8e9814..fa3104d55d 100644 --- a/pdns/misc.hh +++ b/pdns/misc.hh @@ -306,7 +306,7 @@ inline void unixDie(const string &why) string makeHexDump(const string& str); void shuffle(vector& rrs); -class DNSZoneRecord; +struct DNSZoneRecord; void shuffle(vector& rrs); void orderAndShuffle(vector& rrs); -- 2.47.2