Closed Woolfrey closed 1 year ago
By declaring using namespace Eigen in the preamble of the header file, anyone who uses RobotLibrary will be forced to use it as well.
using namespace Eigen
RobotLibrary
It is better to declare it inside function scope where necessary.
Completed.
By declaring
using namespace Eigen
in the preamble of the header file, anyone who usesRobotLibrary
will be forced to use it as well.It is better to declare it inside function scope where necessary.