1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-02-08 12:01:56 +00:00

Fix build with libc++

This commit is contained in:
Baptiste Daroussin 2013-09-06 19:58:38 +00:00
parent 72f1726e72
commit 4d5779928c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=326540

View File

@ -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)