diff options
author | Justin M. Seger <jseger@FreeBSD.org> | 1998-12-18 03:09:05 +0000 |
---|---|---|
committer | Justin M. Seger <jseger@FreeBSD.org> | 1998-12-18 03:09:05 +0000 |
commit | ee8e25af3e45dba924ed05c7b2f13c886f9c2d69 (patch) | |
tree | 11c40c9e80925ecd07595f3305c7bc898e7e4019 /devel/stlport/files | |
parent | 986552f488852bca11b7faa5f707a20fe5c00ed0 (diff) |
Notes
Diffstat (limited to 'devel/stlport/files')
-rw-r--r-- | devel/stlport/files/patch-aa | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/devel/stlport/files/patch-aa b/devel/stlport/files/patch-aa new file mode 100644 index 000000000000..fbe88d7bf6fa --- /dev/null +++ b/devel/stlport/files/patch-aa @@ -0,0 +1,12 @@ +--- stl_rope.h.orig Sun Feb 8 18:08:40 1998 ++++ stl_rope.h Thu Dec 17 19:37:18 1998 +@@ -776,7 +776,8 @@ + __rope_iterator_base<charT,Alloc>(r.tree_ptr, pos) {} + self& operator= (const self & x) { + if (0 != x.buf_ptr) { +- *this = x; ++ *(static_cast<__rope_iterator_base<charT,Alloc>*>(this)) = x; ++ // bugfix by Kevin Atkinosn (kevina@clark.net) was *this = x; + } else { + current_pos = x.current_pos; + root = x.root; |