Optimize C++ compilation time

This commit is contained in:
Wojtek Figat
2021-04-30 16:27:57 +02:00
parent 05ba9b8d45
commit 0e75dba142
222 changed files with 1095 additions and 1506 deletions

View File

@@ -132,6 +132,13 @@ void BinaryAsset::GetImportMetadata(String& path, String& username) const
}
}
String BinaryAsset::GetImportPath() const
{
String path, username;
GetImportMetadata(path, username);
return path;
}
void BinaryAsset::ClearDependencies()
{
for (auto& e : Dependencies)
@@ -492,7 +499,6 @@ protected:
return Result::Ok;
}
void OnEnd() override
{
_dataLock.Release();