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
Or in the cpp file - should always put function code in a cpp file unless it's either 1) a template function, or 2) you are expressly looking for an algorithm speedup by avoiding a function call (tradeoff cost - greatly increased program size).
I avoided doing this in the first version of the ecl when I was attracted by the idea of a header library we didn't need to compile (simpler to setup, simpler to install....lazy bastard). End result was that after a while our program sizes rapidly got so large they became unwieldy on embedded platforms (particularly for iclebo) and ecl2 was spawned.
bit-pirate
changed the title
pose_controller: make methods inline
[yocs_diff_drive_controller] move function code from header to separate cpp file
Apr 8, 2015
E.g.
Put it inside the class declaration or add
inline
.The text was updated successfully, but these errors were encountered: