Changeset 24316 in vbox
- Timestamp:
- Nov 4, 2009 11:15:04 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/MachineImpl.cpp
r24315 r24316 1510 1510 AssertRelease(id < RT_ELEMENTS(mHWData->mCpuIdStdLeafs)); 1511 1511 /* Invalidate leaf. */ 1512 mHWData->mCpuIdStdLeafs[id].ulId = -1 1512 mHWData->mCpuIdStdLeafs[id].ulId = -1; 1513 1513 break; 1514 1514 … … 1535 1535 } 1536 1536 1537 STDMETHODIMP Machine:: removeAllCpuIdLeafs()1537 STDMETHODIMP Machine::RemoveAllCpuIdLeafs() 1538 1538 { 1539 1539 AutoCaller autoCaller(this); … … 1547 1547 /* Invalidate all standard leafs. */ 1548 1548 for (unsigned i = 0; i < RT_ELEMENTS(mHWData->mCpuIdStdLeafs); i++) 1549 mHWData->mCpuIdStdLeafs[i d].ulId = -1;1549 mHWData->mCpuIdStdLeafs[i].ulId = -1; 1550 1550 1551 1551 /* Invalidate all extended leafs. */ 1552 1552 for (unsigned i = 0; i < RT_ELEMENTS(mHWData->mCpuIdExtLeafs); i++) 1553 mHWData->mCpuIdExtLeafs[i d].ulId = -1;1553 mHWData->mCpuIdExtLeafs[i].ulId = -1; 1554 1554 1555 1555 return S_OK;
Note:
See TracChangeset
for help on using the changeset viewer.