mirror of
https://git.freebsd.org/ports.git
synced 2025-07-15 00:09:15 -04:00
11 lines
381 B
C++
11 lines
381 B
C++
--- my_set.h.orig
|
|
+++ my_set.h
|
|
@@ -47,7 +47,7 @@
|
|
//*****************************************************************************
|
|
{
|
|
public:
|
|
- bool contains( T const &s ) const { return find( s ) != this->end(); }
|
|
+ bool contains( T const &s ) const { return this->find( s ) != this->end(); }
|
|
};
|
|
|
|
//*****************************************************************************
|