mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-25 12:12:50 +01:00
Fix warning
This commit is contained in:
parent
2d14742a05
commit
0bb83ed5e9
@ -80,7 +80,7 @@ public:
|
|||||||
|
|
||||||
using return_t = decltype(func(std::declval<T&>()));
|
using return_t = decltype(func(std::declval<T&>()));
|
||||||
|
|
||||||
for (usz i = 0; _this; i += N)
|
while (_this)
|
||||||
{
|
{
|
||||||
for (usz j = 0; j < N; j++)
|
for (usz j = 0; j < N; j++)
|
||||||
{
|
{
|
||||||
@ -101,7 +101,9 @@ public:
|
|||||||
|
|
||||||
lf_array* next = m_next;
|
lf_array* next = m_next;
|
||||||
|
|
||||||
if (!next && !std::is_void_v<return_t> && !is_finite)
|
if constexpr (!std::is_void_v<return_t>)
|
||||||
|
{
|
||||||
|
if (!next && !is_finite)
|
||||||
{
|
{
|
||||||
for (auto _new = new lf_array, ptr = _this; ptr;)
|
for (auto _new = new lf_array, ptr = _this; ptr;)
|
||||||
{
|
{
|
||||||
@ -115,6 +117,7 @@ public:
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
_this = next;
|
_this = next;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user