| 207 | void CheckVariable(char* ptr, const ExternTypeInfo& type); |
| 208 | |
| 209 | struct RootInfo |
| 210 | { |
| 211 | RootInfo(){} |
| 212 | RootInfo(char* ptr, const ExternTypeInfo* type): ptr(ptr), type(type){} |
| 213 | |
| 214 | char *ptr; |
| 215 | const ExternTypeInfo* type; |
| 216 | }; |
| 217 | FastVector<RootInfo> rootsA, rootsB; |
| 218 | FastVector<RootInfo> *curr = NULL, *next = NULL; |
| 219 |