Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
FreePhoenix888 committed Mar 24, 2022
1 parent b5a410b commit ca3d68c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cpp/Platform.Data.Doublets/ILinksExtensions.h
Original file line number Diff line number Diff line change
Expand Up @@ -546,11 +546,11 @@ namespace Platform::Data::Doublets
typename TStorage::LinkType restriction;
if constexpr (0 == length)
{
restriction{ storage.Constants.Any, storage.Constants.Any, storage.Constants.Any };
restriction = { storage.Constants.Any, storage.Constants.Any, storage.Constants.Any };
}
else
{
restriction{ static_cast<typename TStorage::HandlerParameterType>(restrictionPack)... };
restriction = { static_cast<typename TStorage::HandlerParameterType>(restrictionPack)... };
}
return Update(storage, restriction, handler);
}
Expand Down

0 comments on commit ca3d68c

Please sign in to comment.