freebsd-ports/devel/ptlib26/files/patch-include_ptlib_array.h
Koop Mast 0b6867c17e Fix build with clang.
Submitted by:	Pawel Worach on irc
2012-09-03 20:48:44 +00:00

11 lines
279 B
C

--- include/ptlib/array.h.orig 2012-09-03 22:42:13.000000000 +0200
+++ include/ptlib/array.h 2012-09-03 22:42:49.000000000 +0200
@@ -523,7 +523,7 @@
T t;
stream >> t;
if (!stream.fail())
- SetAt(index, t);
+ this->SetAt(index, t);
}
};