Changeset 153 for cpp/frams/vm
- Timestamp:
- 03/01/14 22:20:08 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/vm/classes/collectionobj.cpp
r127 r153 248 248 { 249 249 VMVEComparator cmp(jto); 250 ExtValue **first=(ExtValue**)&data.getref( );250 ExtValue **first=(ExtValue**)&data.getref(0); 251 251 std::sort(first,first+data.size(),cmp); 252 252 } … … 255 255 { 256 256 VEComparator cmp; 257 ExtValue **first=(ExtValue**)&data.getref( );257 ExtValue **first=(ExtValue**)&data.getref(0); 258 258 std::sort(first,first+data.size(),cmp); 259 259 }
Note: See TracChangeset
for help on using the changeset viewer.