blob: fbe88d7bf6face22df90b7855dc034e29cf2d9eb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
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;
|