ports/devel/commoncpp/files/patch-include-cc++_address.h
Jose Alonso Cardenas Marquez 96187d7a68 - Update to 1.5.7
PR:		116300
Submitted by:	alepulver
2007-10-02 14:42:31 +00:00

28 lines
744 B
C

--- ./include/cc++/address.h.orig Tue Jan 23 14:15:02 2007
+++ ./include/cc++/address.h Tue Sep 11 11:58:17 2007
@@ -236,10 +236,10 @@
bool isMember(const struct in_addr &inaddr) const;
inline bool operator==(const struct sockaddr *a) const
- {return isMember(a);};
+ {return isMember(a);}
inline bool operator==(const struct in_addr &a) const
- {return isMember(a);};
+ {return isMember(a);}
};
#ifdef CCXX_IPV6
@@ -324,10 +324,10 @@
bool isMember(const struct in6_addr &inaddr) const;
inline bool operator==(const struct sockaddr *sa) const
- {return isMember(sa);};
+ {return isMember(sa);}
inline bool operator==(const struct in6_addr &a) const
- {return isMember(a);};
+ {return isMember(a);}
};
#endif