diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2011-06-25 07:43:49 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2011-06-25 07:43:49 +0000 |
commit | f3012dcd6c2f31fc5b089936a3eb53f8580a111f (patch) | |
tree | 54a36f219be768858f5149aa2b5cc832dac875e5 | |
parent | - Fix build with CLANG (diff) |
- Fix build with CLANG
PR: 158182
Submitted by: Niclas Zeising <niclas.zeising@gmail.com>
-rw-r--r-- | devel/pwlib/files/patch-include-ptlib-array.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/devel/pwlib/files/patch-include-ptlib-array.h b/devel/pwlib/files/patch-include-ptlib-array.h new file mode 100644 index 000000000000..9f61e7575765 --- /dev/null +++ b/devel/pwlib/files/patch-include-ptlib-array.h @@ -0,0 +1,11 @@ +--- 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); + } + }; + |