mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-23 19:54:59 -04:00
15 lines
493 B
C++
15 lines
493 B
C++
$NetBSD: patch-bgp_route__table__fanout.hh,v 1.1 2013/06/13 21:48:09 joerg Exp $
|
|
|
|
--- bgp/route_table_fanout.hh.orig 2013-06-13 19:01:39.000000000 +0000
|
|
+++ bgp/route_table_fanout.hh
|
|
@@ -45,6 +45,9 @@ public:
|
|
bool operator==(const NextTableMapIterator& them) const {
|
|
return _iter == them._iter;
|
|
}
|
|
+ bool operator!=(const NextTableMapIterator& them) const {
|
|
+ return _iter != them._iter;
|
|
+ }
|
|
private:
|
|
typename multimap <uint32_t, PeerTableInfo<A>*>::iterator _iter;
|
|
};
|