Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisnas authored and andrewlock committed Jun 14, 2024
1 parent d84957e commit 1914e35
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ bool FrameStore::GetTypeDesc(ClassID classId, TypeDesc*& pTypeDesc)
std::lock_guard<std::mutex> lock(_typesLock);

// it is possible that another thread already added the type description while we were building it
auto typeEntry = _types.find(classId);
auto typeEntry = _types.find(originalClassId);
if (typeEntry != _types.end())
{
pTypeDesc = &typeEntry->second;
Expand Down

0 comments on commit 1914e35

Please sign in to comment.