Changeset 13836 in vbox for trunk/src/VBox/Runtime/testcase/tstErrUnique.cpp
- Timestamp:
- Nov 5, 2008 2:42:54 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/testcase/tstErrUnique.cpp
r8729 r13836 70 70 RTPrintf("tstErrUnique: TESTING\n"); 71 71 72 for (uint32_t i = 0; i < ELEMENTS(g_aErrorMessages) - 1; i++)72 for (uint32_t i = 0; i < RT_ELEMENTS(g_aErrorMessages) - 1; i++) 73 73 { 74 74 if (strIsPermissibleDuplicate(&g_aErrorMessages[i])) 75 75 continue; 76 76 77 for (uint32_t j = i + 1; j < ELEMENTS(g_aErrorMessages); j++)77 for (uint32_t j = i + 1; j < RT_ELEMENTS(g_aErrorMessages); j++) 78 78 { 79 79 if (strIsPermissibleDuplicate(&g_aErrorMessages[j]))
Note:
See TracChangeset
for help on using the changeset viewer.