From: Bert Hubert Date: Sat, 4 Mar 2006 11:01:20 +0000 (+0000) Subject: some module g++ 4.1 cleanups X-Git-Tag: pdns-2.9.20~19 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a0dbd4ce64427e3232e321cbe0f349ccca864d87;p=thirdparty%2Fpdns.git some module g++ 4.1 cleanups git-svn-id: svn://svn.powerdns.com/pdns/trunk/pdns@569 d19b8d6e-7fed-0310-83ef-9ca221ded41b --- diff --git a/modules/geobackend/ippreftree.hh b/modules/geobackend/ippreftree.hh index b9890d879a..7af7503a41 100644 --- a/modules/geobackend/ippreftree.hh +++ b/modules/geobackend/ippreftree.hh @@ -41,7 +41,7 @@ private: void addNode(node_t * node, const uint32_t ip, const uint32_t mask, const short value); node_t * allocateNode(); - const node_t * IPPrefTree::findDeepestFilledNode(const node_t *root, const uint32_t ip, const uint32_t mask) const; + const node_t * findDeepestFilledNode(const node_t *root, const uint32_t ip, const uint32_t mask) const; void removeNode(node_t * node); inline uint32_t preflenToNetmask(const int preflen) const; diff --git a/modules/pipebackend/coprocess.hh b/modules/pipebackend/coprocess.hh index f72e723e92..2de739d996 100644 --- a/modules/pipebackend/coprocess.hh +++ b/modules/pipebackend/coprocess.hh @@ -19,7 +19,7 @@ public: void receive(string &rcv); void send(const string &send); private: - void CoProcess::checkStatus(); + void checkStatus(); int d_fd1[2], d_fd2[2]; int d_pid; int d_infd;