From: Christian Hofstaedtler Date: Thu, 22 Sep 2016 16:35:02 +0000 (+0200) Subject: Fix struct/class mismatch warning reported by apple clang 800.0.38 X-Git-Tag: dnsdist-1.1.0-beta2~121^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c77eccee5c4e2b76c226179cb1b00b9116889978;p=pdns Fix struct/class mismatch warning reported by apple clang 800.0.38 --- diff --git a/pdns/misc.hh b/pdns/misc.hh index 225d8e981..fa3104d55 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);