From: Pieter Lexis Date: Fri, 22 May 2015 16:19:44 +0000 (+0200) Subject: Align SuffixMatchNode on an 8-byte boundry X-Git-Tag: dnsdist-1.0.0-alpha1~248^2~77^2~4^2~38 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1b6c952734c4c9193954de9dbaca30c45b0d5b2f;p=thirdparty%2Fpdns.git Align SuffixMatchNode on an 8-byte boundry --- diff --git a/pdns/dnsname.hh b/pdns/dnsname.hh index 542c85fa3c..c22bc6619e 100644 --- a/pdns/dnsname.hh +++ b/pdns/dnsname.hh @@ -92,8 +92,8 @@ struct SuffixMatchNode {} std::string name; std::string d_human; - mutable bool endNode; mutable std::set children; + mutable bool endNode; bool operator<(const SuffixMatchNode& rhs) const { return strcasecmp(name.c_str(), rhs.name.c_str()) < 0;