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: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F4494%2Fhead;p=thirdparty%2Fpdns.git Fix struct/class mismatch warning reported by apple clang 800.0.38 --- 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);