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
A clang-tidy analysis warned me that there's a cyclic include in norm.hpp/quaternion.hpp which is true. norm.hpp has #include "../gtx/quaternion.hpp" while quaternion.hpp has #include "../gtx/norm.hpp".
I don't quiet understand why norm.hpp needs to include the quaternion header so I suspect the include should be removed there though I don't understand the codebase too well to make the final call and raise a PR.
The text was updated successfully, but these errors were encountered:
A clang-tidy analysis warned me that there's a cyclic include in norm.hpp/quaternion.hpp which is true. norm.hpp has
#include "../gtx/quaternion.hpp"
while quaternion.hpp has#include "../gtx/norm.hpp"
.I don't quiet understand why norm.hpp needs to include the quaternion header so I suspect the include should be removed there though I don't understand the codebase too well to make the final call and raise a PR.
The text was updated successfully, but these errors were encountered: