1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-22 10:42:36 +01:00

workaround Clang 18.1 crash

This commit is contained in:
oltolm 2024-03-20 17:34:38 +01:00 committed by Megamouse
parent 59410b9d62
commit ac034040ce

View File

@ -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);
}
}