]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Align SuffixMatchNode on an 8-byte boundry
authorPieter Lexis <pieter.lexis@powerdns.com>
Fri, 22 May 2015 16:19:44 +0000 (18:19 +0200)
committerPieter Lexis <pieter.lexis@powerdns.com>
Fri, 19 Jun 2015 18:14:19 +0000 (20:14 +0200)
pdns/dnsname.hh

index 542c85fa3cd01e136a0faf8c6336a2d311dcd346..c22bc6619e9b42ea7dcedd56599461315266f243 100644 (file)
@@ -92,8 +92,8 @@ struct SuffixMatchNode
   {}
   std::string name;
   std::string d_human;
-  mutable bool endNode;
   mutable std::set<SuffixMatchNode> children;
+  mutable bool endNode;
   bool operator<(const SuffixMatchNode& rhs) const
   {
     return strcasecmp(name.c_str(), rhs.name.c_str()) < 0;