Fix build with clang.

Submitted by:	Pawel Worach on irc
This commit is contained in:
Koop Mast 2012-09-03 20:48:44 +00:00
parent 2650f95f80
commit 0b6867c17e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=303620

View file

@ -0,0 +1,11 @@
--- 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);
}
};