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
Don't use using namespace in header files. This pollutes any file that includes the header, and can cause unpredictable results. Fully qualify instead, for example use Eigen:;Vector3d.
The text was updated successfully, but these errors were encountered:
Some header files have
using namespace
:https://github.com/rpiRobotics/linear-subproblem-solutions/blob/fd35b3b4abb3cb8baa85b1e62f0011f424fc8d26/cpp/%2Bsubproblem_setups/sp_2E.h#L14
Don't use
using namespace
in header files. This pollutes any file that includes the header, and can cause unpredictable results. Fully qualify instead, for example useEigen:;Vector3d
.The text was updated successfully, but these errors were encountered: