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
Fixed spelling and opted for explicit typing (#960)
In core/include/detray/navigation/intersection/ray_line_intersector.hpp, there is a line which uses auto for type deduction, which was giving me problems with Fastor, because auto was resolving to an expression template and then causing compilation errors further down the line. I changed it to an explicit type (vector3_type) to force evaluation.
0 commit comments