Changeset 67734 in vbox for trunk/src/VBox/Main/src-all
- Timestamp:
- Jun 30, 2017 1:39:25 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 116588
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-all/Global.cpp
r67733 r67734 538 538 /* static */ uint32_t Global::getOSTypeIndexFromId(const char *pszId) 539 539 { 540 size_t const cOSTypes = Global::cOSTypes; 541 for (size_t i = 0; i < cOSTypes; ++i) 540 for (size_t i = 0; i < RT_ELEMENTS(Global::sOSTypes); ++i) 542 541 if (!RTStrICmp(pszId, Global::sOSTypes[i].id)) 543 542 return (uint32_t)i;
Note:
See TracChangeset
for help on using the changeset viewer.