diff options
author | joerg <joerg@pkgsrc.org> | 2013-05-04 12:50:38 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2013-05-04 12:50:38 +0000 |
commit | 08fcd1fb803387dd62f64485361f4d7a947ecc99 (patch) | |
tree | b4e48c8f5db703a4f460e57a7684a87cf5d7eab4 /net | |
parent | 22c214494e39a883b35814b548e2108b34fa6c59 (diff) | |
download | pkgsrc-08fcd1fb803387dd62f64485361f4d7a947ecc99.tar.gz |
size_type is a trait of the container, not the iterator.
Diffstat (limited to 'net')
-rw-r--r-- | net/aria2/distinfo | 3 | ||||
-rw-r--r-- | net/aria2/patches/patch-src_IndexedList.h | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/net/aria2/distinfo b/net/aria2/distinfo index bf69c2b954a..298bf5d29ad 100644 --- a/net/aria2/distinfo +++ b/net/aria2/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.31 2013/03/19 15:48:29 ryoon Exp $ +$NetBSD: distinfo,v 1.32 2013/05/04 12:50:38 joerg Exp $ SHA1 (aria2-1.16.4.tar.bz2) = 302885fae5809e5bd62abd4cdb9592bb5b47c4a1 RMD160 (aria2-1.16.4.tar.bz2) = 14a745b3703867d5f65329581f189a681349ccc4 Size (aria2-1.16.4.tar.bz2) = 2156764 bytes +SHA1 (patch-src_IndexedList.h) = 9de3c3ee715d6a59454fd594464f19e33a4df9a0 diff --git a/net/aria2/patches/patch-src_IndexedList.h b/net/aria2/patches/patch-src_IndexedList.h new file mode 100644 index 00000000000..d2371718547 --- /dev/null +++ b/net/aria2/patches/patch-src_IndexedList.h @@ -0,0 +1,13 @@ +$NetBSD: patch-src_IndexedList.h,v 1.1 2013/05/04 12:50:38 joerg Exp $ + +--- src/IndexedList.h.orig 2013-05-03 11:55:44.000000000 +0000 ++++ src/IndexedList.h +@@ -68,7 +68,7 @@ struct IndexedListIterator { + typedef ValueType value_type; + typedef PointerType pointer; + typedef ReferenceType reference; +- typedef typename SeqIteratorType::size_type size_type; ++ typedef typename SeqType::size_type size_type; + typedef typename SeqIteratorType::difference_type difference_type; + typedef IndexedListIterator SelfType; + |