Changeset 59983 in vbox
- Timestamp:
- Mar 10, 2016 3:38:31 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/testcase/tstRTSort.cpp
r59972 r59983 124 124 125 125 /* sort it */ 126 pfnSorter(pbArray, cElements, cbElement, testCompare, (void *) cbElement);126 pfnSorter(pbArray, cElements, cbElement, testCompare, (void *)(uintptr_t)cbElement); 127 127 128 128 /* verify it */ 129 if (!RTSortIsSorted(pbArray, cElements, cbElement, testCompare, (void *) cbElement))129 if (!RTSortIsSorted(pbArray, cElements, cbElement, testCompare, (void *)(uintptr_t)cbElement)) 130 130 RTTestIFailed("failed sorting %u elements of %u size", cElements, cbElement); 131 131
Note:
See TracChangeset
for help on using the changeset viewer.