Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 6 Sep 2013 19:58:39 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r326540 - head/devel/libplist/files
Message-ID:  <201309061958.r86JwdGQ042695@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bapt
Date: Fri Sep  6 19:58:38 2013
New Revision: 326540
URL: http://svnweb.freebsd.org/changeset/ports/326540

Log:
  Fix build with libc++

Added:
  head/devel/libplist/files/
  head/devel/libplist/files/patch-src__Dictionary.cpp   (contents, props changed)

Added: head/devel/libplist/files/patch-src__Dictionary.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/libplist/files/patch-src__Dictionary.cpp	Fri Sep  6 19:58:38 2013	(r326540)
@@ -0,0 +1,11 @@
+--- ./src/Dictionary.cpp.orig	2013-03-19 17:34:11.000000000 +0100
++++ ./src/Dictionary.cpp	2013-09-06 21:56:58.185535926 +0200
+@@ -151,7 +151,7 @@
+         _map[key] = clone;
+         return _map.find(key);
+     }
+-    return iterator(NULL);
++    return iterator();
+ }
+ 
+ void Dictionary::Remove(Node* node)



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