View Single Post
Old 12-17-2003, 10:14 PM   #34 (permalink)
charliex
Junkie
 
Location: North Hollywood
Quote:
I'm not sure what you mean by a dangling pointer. This whole thing is just a vector of doubles right. no pointers anywhere??
internally in the vector class, since its resizing the array, it seems to cheat and free the ptr,use it then, reallocate it, which is what a dangling pointer is, like i said i think its VC at fault there.

Quote:
Actually, VC (or at least VC 6 and VC.NET) support the:

for( int i = 0; i < foo; i++ ) {
}
VC 6 doesn't support that. or at least in the way i mentioned

Quote:
for( int i = 0; i < foo; i++ ) {
}
for( int i = 0; i < foo; i++ ) {
}
charliex is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73