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
zero-order.cpp try_get_zo_rtd_ir_point_values() contains a line testing values.rtd.size() twice.
if (values_rtd.size() == 0 || values_rtd.size() == 0)
Looks like a classic cut and paste error that should be
if ((values_rtd.size() == 0) || (values_ir.size() == 0))
The text was updated successfully, but these errors were encountered:
Merge pull request #5734 from rpadak/pull5733
1681e6d
Fix what appears to be a copy/paste redundant code problem. Issue #5733
Hi @JTrantow Thanks for the fixes
Sorry, something went wrong.
No branches or pull requests
Issue Description
zero-order.cpp try_get_zo_rtd_ir_point_values() contains a line testing values.rtd.size() twice.
Looks like a classic cut and paste error that should be
The text was updated successfully, but these errors were encountered: