Disabled exceptions for stl on WIN32. Fixed warnings

This commit is contained in:
2020-07-22 17:37:22 -07:00
parent 46c356ebc5
commit f1d25b4cdf
5 changed files with 8 additions and 4 deletions

View File

@@ -41,7 +41,7 @@ KRBundleManager::~KRBundleManager() {
for(unordered_map<std::string, KRBundle *>::iterator itr = m_bundles.begin(); itr != m_bundles.end(); ++itr){
delete (*itr).second;
}
m_bundles.empty();
m_bundles.clear();
}
KRResource* KRBundleManager::loadResource(const std::string& name, const std::string& extension, KRDataBlock* data)