Skip to content

Commit

Permalink
Fix potential wrong-over-optimization in math utilities
Browse files Browse the repository at this point in the history
Signed-off-by: falkTX <[email protected]>
  • Loading branch information
falkTX committed Jan 2, 2024
1 parent 46792aa commit 4528592
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/utils/CarlaMathUtils.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ void carla_addFloats(float dest[], const float src[], const std::size_t count) n
if (!std::isfinite(src[i]))
__builtin_unreachable();
#endif
*dest++ += *src++;
dest[i] += src[i];
}
}

Expand Down

0 comments on commit 4528592

Please sign in to comment.