cleanup (requires update-workspaces)

lib_errors.cpp: replace with status.cpp, adapt to needs at work
wutil: fix runtime warning reported via feedback box
config: merge CONFIG_PARANOIA and !CONFIG_FINAL into
CONFIG_ENABLE_CHECKS
add openmp, pointer_typedefs.h

This was SVN commit r9410.
This commit is contained in:
janwas
2011-05-03 12:38:42 +00:00
parent 114ca8e4ce
commit cccd6849a7
198 changed files with 1995 additions and 1961 deletions
+2 -2
View File
@@ -29,7 +29,7 @@ CCacheLoader::CCacheLoader(PIVFS vfs, const std::wstring& fileExtension) :
{
}
LibError CCacheLoader::TryLoadingCached(const VfsPath& sourcePath, const MD5& initialHash, u32 version, VfsPath& loadPath)
Status CCacheLoader::TryLoadingCached(const VfsPath& sourcePath, const MD5& initialHash, u32 version, VfsPath& loadPath)
{
VfsPath archiveCachePath = ArchiveCachePath(sourcePath);
@@ -41,7 +41,7 @@ LibError CCacheLoader::TryLoadingCached(const VfsPath& sourcePath, const MD5& in
}
// Fail if no source or archive cache
LibError err = m_VFS->GetFileInfo(sourcePath, NULL);
Status err = m_VFS->GetFileInfo(sourcePath, NULL);
if (err < 0)
{
LOGERROR(L"Failed to find file: \"%ls\"", sourcePath.string().c_str());