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
In hardware/interp.h, the definition of the inline function interp_add_accumulater doesn't match the dictionary spelling of "accumulator" used anywhere else in the project or its documentation.
Since changing it could break existing user code, is this the type of thing where there is precedent to keep the incorrect spelling as an alias?
The text was updated successfully, but these errors were encountered:
Yeah the usual approach is to rename the actual function itself, and then add a #define for the old name, so that existing code keeps working; similar to this .
So in your case you'd probably want to add something like:
In hardware/interp.h, the definition of the inline function
interp_add_accumulater
doesn't match the dictionary spelling of "accumulator" used anywhere else in the project or its documentation.Since changing it could break existing user code, is this the type of thing where there is precedent to keep the incorrect spelling as an alias?
The text was updated successfully, but these errors were encountered: