We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
integrate
Archlinux
Master
Before #7379
Arithmetic exception triggered by the integrate function in Xpressive.
Should not crash
Loading the default preset: gdb.txt
Empty preset and typing integrate(f) into O1: gdb2.txt
integrate(f)
The text was updated successfully, but these errors were encountered:
@gnudles you have any idea?
Sorry, something went wrong.
@Rossmaxx I will look into that, thanks. Maybe there is an undefined behaviour error.
@Rossmaxx 851c884#diff-e474279d8fff8dbea1526e155470b2d712583ef3ceb0903a20d03088825d5802
someone replaced the line for (i = 0; i < length; i++) { with this for (auto i = std::size_t{0}; i < length; i++) {
for (i = 0; i < length; i++) {
for (auto i = std::size_t{0}; i < length; i++) {
I was using the reference of i internally, and this change created a different variable.
opened a pull request: #7499
Successfully merging a pull request may close this issue.
System Information
Archlinux
LMMS Version(s)
Master
Most Recent Working Version
Before #7379
Bug Summary
Arithmetic exception triggered by the
integrate
function in Xpressive.Expected Behaviour
Should not crash
Steps To Reproduce
integrate
,Logs
Loading the default preset: gdb.txt
Empty preset and typing
integrate(f)
into O1: gdb2.txtScreenshots / Minimum Reproducible Project
Screencast.from.2024-08-25.09-43-27.webm
Please search the issue tracker for existing bug reports before submitting your own.
The text was updated successfully, but these errors were encountered: