From 5aa14bf761ace4f30e192d5fa594011cd8eab71c Mon Sep 17 00:00:00 2001 From: Fritz Elfert Date: Wed, 6 Mar 2002 12:45:11 +0000 Subject: Removed double colons in friend declaration (seems to confuse some compilers) --- ncpd/link.h | 2 +- ncpd/packet.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'ncpd') diff --git a/ncpd/link.h b/ncpd/link.h index 0830bbc..cf265c0 100644 --- a/ncpd/link.h +++ b/ncpd/link.h @@ -142,7 +142,7 @@ public: private: friend class packet; - friend void * ::expire_check(void *); + friend void * expire_check(void *); void receive(bufferStore buf); void transmit(bufferStore buf); diff --git a/ncpd/packet.h b/ncpd/packet.h index e4d7381..aa0b90c 100644 --- a/ncpd/packet.h +++ b/ncpd/packet.h @@ -61,7 +61,7 @@ public: void reset(); private: - friend void * ::pump_run(void *); + friend void * pump_run(void *); inline void addToCrc(unsigned char a, unsigned short *crc) { *crc = (*crc << 8) ^ crc_table[((*crc >> 8) ^ a) & 0xff]; -- cgit v1.2.3