Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 3 Sep 2012 20:48:44 +0000 (UTC)
From:      Koop Mast <kwm@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r303620 - head/devel/ptlib26/files
Message-ID:  <201209032048.q83Kmi65041870@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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);
+     }
+ };
+ 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201209032048.q83Kmi65041870>