svn commit: r303620 - head/devel/ptlib26/files

Koop Mast kwm at FreeBSD.org
Mon Sep 3 20:48:45 UTC 2012


Author: kwm
Date: Mon Sep  3 20:48:44 2012
New Revision: 303620
URL: http://svn.freebsd.org/changeset/ports/303620

Log:
  Fix build with clang.
  
  Submitted by:	Pawel Worach on irc

Added:
  head/devel/ptlib26/files/patch-include_ptlib_array.h   (contents, props changed)

Added: head/devel/ptlib26/files/patch-include_ptlib_array.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/ptlib26/files/patch-include_ptlib_array.h	Mon Sep  3 20:48:44 2012	(r303620)
@@ -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);
+     }
+ };
+ 



More information about the svn-ports-all mailing list