Fix clang 13 compilation problems (#5791)
* Fix clang 13 compilation problems Re-instated ShowPlayedSequencesDebug logic by introducing no-op lambda which replaces missing `Draw2dLabel` functionality ( added TODO marker there ) Signed-off-by: nemerle <96597+nemerle@users.noreply.github.com> * apply review suggestions Signed-off-by: nemerle <96597+nemerle@users.noreply.github.com> * Fix type in assert message Signed-off-by: nemerle <96597+nemerle@users.noreply.github.com>
This commit is contained in:
@@ -274,11 +274,9 @@ namespace AssetProcessor
|
||||
}
|
||||
|
||||
//look for the job in flight first
|
||||
bool found = false;
|
||||
auto foundElement = m_jobRunKeyToJobInfoMap.find(request.m_jobRunKey);
|
||||
if (foundElement != m_jobRunKeyToJobInfoMap.end())
|
||||
{
|
||||
found = true;
|
||||
jobInfo = foundElement->second;
|
||||
}
|
||||
else
|
||||
@@ -296,7 +294,6 @@ namespace AssetProcessor
|
||||
|
||||
AZ_Assert(jobInfos.size() == 1, "Should only have found one jobInfo!!!");
|
||||
jobInfo = AZStd::move(jobInfos[0]);
|
||||
found = true;
|
||||
}
|
||||
|
||||
if (jobInfo.m_status == JobStatus::Failed_InvalidSourceNameExceedsMaxLimit)
|
||||
|
||||
Reference in New Issue
Block a user