Fix a clear bug in aldlist.cpp.

Properly clears itself now.
This commit is contained in:
lioncash 2013-01-15 12:47:13 -05:00
parent 866cdc5961
commit 1cf7cbb936
1 changed files with 2 additions and 2 deletions

View File

@ -48,7 +48,7 @@ ALDeviceList::ALDeviceList()
const char *actualDeviceName = NULL;
// DeviceInfo vector stores, for each enumerated device, it's device name, selection status, spec version #, and extension support
vDeviceInfo.empty();
vDeviceInfo.clear();
vDeviceInfo.reserve(10);
defaultDeviceIndex = 0;
@ -151,7 +151,7 @@ ALDeviceList::~ALDeviceList()
}
}
vDeviceInfo.empty();
vDeviceInfo.clear();
}
/*