You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When checking for errors in the parameter manager, the get_double method does not handle errors appropriately. This is because when a std::variant gets created, it defaults to the first templated type listed. Since double is listed first, it initializes double parameters to zero instead of returning an error when accessing a parameter not previously declared.
The text was updated successfully, but these errors were encountered:
When checking for errors in the parameter manager, the
get_double
method does not handle errors appropriately. This is because when astd::variant
gets created, it defaults to the first templated type listed. Since double is listed first, it initializes double parameters to zero instead of returning an error when accessing a parameter not previously declared.The text was updated successfully, but these errors were encountered: