-
-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
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
Wip/optimize parameters #87
base: development
Are you sure you want to change the base?
Conversation
…ood/Biquads into wip/optimize_parameters
…ls... this is a WIP
Signed-off-by: StoneyDSP <[email protected]>
Oh look, the CI/CD failed. No worries, the logs can help us determine the cause of failure so that we can reproduce, fix, create tests, and deploy a patch. Let's see what the logs say! SEGFAULT |
More seriously, strange that the build succeeded but it was pluginval which failed by SEGFAULTing. Suggests that perhaps the array index went out of bounds for some reason. That, or possibly a pointer to a non-valid object... well, whatever it is, at least we have some really helpful and informative information to begin our search with: SEGFAULT |
We'd probably have learned the cause of the issue whilst avoiding it, had we used the vector container template class and unique pointers. Let's try it with std lib. |
What kind of change does this PR introduce?