]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Fix constructor issues uncovered by CentOS
authorAmos Jeffries <squid3@treenet.co.nz>
Sun, 1 Nov 2009 10:49:33 +0000 (23:49 +1300)
committerAmos Jeffries <squid3@treenet.co.nz>
Sun, 1 Nov 2009 10:49:33 +0000 (23:49 +1300)
src/acl/Random.cc

index e88d2f8e93f5a5216fe8c36804c8c3a3f8ddeb38..b43e0790c131b38d8fab0407b21d7f6d0c43c53e 100644 (file)
@@ -44,12 +44,12 @@ ACLRandom::clone() const
     return new ACLRandom(*this);
 }
 
-ACLRandom::ACLRandom (char const *theClass) : data (0.0), class_ (theClass)
+ACLRandom::ACLRandom(char const *theClass) : data(0.0), class_(theClass)
 {
     memset(pattern, 0 , sizeof(pattern));
 }
 
-ACLRandom::ACLRandom (ACLRandom const & old) : data (old.data), class_ (old.class_)
+ACLRandom::ACLRandom(ACLRandom const & old) : data(old.data), class_(old.class_)
 {
     memcpy(pattern, old.pattern, sizeof(pattern));
 }