ports/www/swish++/files/patch-my_set.h
Pawel Pekala f823078f01 Fix build with clang
PR:		ports/184811
Submitted by:	KATO Tsuguru <tkato432@yahoo.com>
2013-12-19 13:22:16 +00:00

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(); }
};
//*****************************************************************************