- Timestamp:
- 05/28/20 17:56:12 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/vm/classes/collectionobj.cpp
r930 r931 270 270 VMachine *vm; 271 271 VMVEComparator(VMachine::JumpTargetObject *_jto) :jto(_jto), vm(jto->vm) {} 272 #ifdef QSORT_R_USING_QSORT_S 273 static int compare(void* _this, const void *a, const void *b); 274 #else 272 275 static int compare(const void *a, const void *b, void* _this); 276 #endif 273 277 }; 274 278 279 #ifdef QSORT_R_USING_QSORT_S 280 int VMVEComparator::compare(void* _this, const void *a, const void *b) 281 #else 275 282 int VMVEComparator::compare(const void *a, const void *b, void* _this) 283 #endif 276 284 { 277 285 VMachine *vm = ((VMVEComparator*)_this)->vm;
Note: See TracChangeset
for help on using the changeset viewer.