From: Chris Hofstaedtler Date: Tue, 3 Apr 2018 09:44:31 +0000 (+0200) Subject: Fix reorder warning: field 'd_rname' will be initialized after field 'd_st' X-Git-Tag: dnsdist-1.3.1~179^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F6437%2Fhead;p=thirdparty%2Fpdns.git Fix reorder warning: field 'd_rname' will be initialized after field 'd_st' --- diff --git a/pdns/dnsrecords.hh b/pdns/dnsrecords.hh index d402227f3c..c23e194087 100644 --- a/pdns/dnsrecords.hh +++ b/pdns/dnsrecords.hh @@ -517,9 +517,9 @@ public: includeboilerplate(SOA) SOARecordContent(const DNSName& mname, const DNSName& rname, const struct soatimes& st); - struct soatimes d_st; DNSName d_mname; DNSName d_rname; + struct soatimes d_st; }; class NSECRecordContent : public DNSRecordContent