Skip to content

Commit

Permalink
workaround Clang 18.1 crash
Browse files Browse the repository at this point in the history
  • Loading branch information
oltolm authored and Megamouse committed Mar 28, 2024
1 parent 59410b9 commit ac03404
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rpcs3/util/types.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1057,7 +1057,7 @@ template <typename CT> requires requires (const CT& x) { std::size(x); }
}
else
{
return narrow<u32>(std::size(container), line, col, file, func);
return narrow<u32>(container.size(), line, col, file, func);
}
}

Expand Down

0 comments on commit ac03404

Please sign in to comment.