aboutsummaryrefslogtreecommitdiff
path: root/finance/openhbci/files
diff options
context:
space:
mode:
authorTilman Keskinoz <arved@FreeBSD.org>2005-01-09 17:24:23 +0000
committerTilman Keskinoz <arved@FreeBSD.org>2005-01-09 17:24:23 +0000
commit86b8c064a9477daeaf4a06d4aa7e805b004aeee4 (patch)
tree4910e2e9af038fddb4e4b52a5ab075aa7eb17846 /finance/openhbci/files
parentcc19227ea33bf93ed649c53ad308962fe12ca410 (diff)
downloadports-86b8c064a9477daeaf4a06d4aa7e805b004aeee4.tar.gz
ports-86b8c064a9477daeaf4a06d4aa7e805b004aeee4.zip
Notes
Diffstat (limited to 'finance/openhbci/files')
-rw-r--r--finance/openhbci/files/patch-tree.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/finance/openhbci/files/patch-tree.h b/finance/openhbci/files/patch-tree.h
new file mode 100644
index 000000000000..aaba14ce9d77
--- /dev/null
+++ b/finance/openhbci/files/patch-tree.h
@@ -0,0 +1,23 @@
+--- src/openhbci/tree.h.orig Mon Jan 3 23:31:35 2005
++++ src/openhbci/tree.h Mon Jan 3 23:28:50 2005
+@@ -695,16 +695,16 @@
+ * Returns an iterator that points to the root of the tree.
+ * @author Martin Preuss<martin@aquamaniac.de>
+ */
+- Tree<T>::iterator root() {
+- return Tree<T>::iterator(&_root);
++ iterator root() {
++ return iterator(&_root);
+ };
+
+ /**
+ * Returns an const_iterator that points to the root of the tree.
+ * @author Martin Preuss<martin@aquamaniac.de>
+ */
+- Tree<T>::const_iterator const_root() const {
+- return Tree<T>::const_iterator(&_root);
++ const_iterator const_root() const {
++ return const_iterator(&_root);
+ };
+
+ /**