ports/devel/pwlib/files/patch-include-ptlib-array.h
Martin Wilke f3012dcd6c - Fix build with CLANG
PR:		158182
Submitted by:	Niclas Zeising <niclas.zeising@gmail.com>
2011-06-25 07:43:49 +00:00

11 lines
279 B
C

--- include/ptlib/array.h.orig 2011-06-23 00:28:13.000000000 +0200
+++ include/ptlib/array.h 2011-06-23 00:28:34.000000000 +0200
@@ -644,7 +644,7 @@
T t;
stream >> t;
if (!stream.fail())
- SetAt(index, t);
+ this->SetAt(index, t);
}
};