]> granicus.if.org Git - pdns/commitdiff
Fix reorder warning: field 'd_rname' will be initialized after field 'd_st'
authorChris Hofstaedtler <chris.hofstaedtler@deduktiva.com>
Tue, 3 Apr 2018 09:44:31 +0000 (11:44 +0200)
committerChris Hofstaedtler <chris.hofstaedtler@deduktiva.com>
Tue, 3 Apr 2018 09:44:31 +0000 (11:44 +0200)
pdns/dnsrecords.hh

index d402227f3c17a469bd364fdcf5dddb2a33076cc8..c23e1940879f58316e745422d44f5d63275bc75e 100644 (file)
@@ -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