1
0
Fork 0
mirror of https://github.com/AquariaOSE/Aquaria.git synced 2025-04-07 23:27:12 +00:00

fix build on linux

This commit is contained in:
fgenesis 2025-03-05 00:44:01 +01:00
parent da8a7a533f
commit db2f6c85d9

View file

@ -360,7 +360,7 @@ public:
{
T s = 0;
const size_t n = this->n;
tbsp__ASSERT(n == o.n);
TBSP_ASSERT(n == o.n);
for(size_t i = 0; i < n; ++i)
s += p[i] * o.p[i];
return s;