aboutsummaryrefslogtreecommitdiffstats
path: root/devel
diff options
context:
space:
mode:
authorkwm <kwm@FreeBSD.org>2012-09-04 04:48:44 +0800
committerkwm <kwm@FreeBSD.org>2012-09-04 04:48:44 +0800
commit31b838e7c66c8d155ed07bc201c3f1ddd1a23b4e (patch)
tree78c30b92875c626dc569cda675dda7a4c67cb05b /devel
parentebb51e14dba583864b6410c3c4854b7676a638ed (diff)
downloadfreebsd-ports-graphics-31b838e7c66c8d155ed07bc201c3f1ddd1a23b4e.tar.gz
freebsd-ports-graphics-31b838e7c66c8d155ed07bc201c3f1ddd1a23b4e.tar.zst
freebsd-ports-graphics-31b838e7c66c8d155ed07bc201c3f1ddd1a23b4e.zip
Fix build with clang.
Submitted by: Pawel Worach on irc
Diffstat (limited to 'devel')
-rw-r--r--devel/ptlib26/files/patch-include_ptlib_array.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/devel/ptlib26/files/patch-include_ptlib_array.h b/devel/ptlib26/files/patch-include_ptlib_array.h
new file mode 100644
index 00000000000..29d620a7136
--- /dev/null
+++ b/devel/ptlib26/files/patch-include_ptlib_array.h
@@ -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);
+ }
+ };
+