Skip to content
Snippets Groups Projects
Commit 693adea1 authored by Aaron Grabowy's avatar Aaron Grabowy
Browse files

Fixed unused warning

parent 46ae55e7
No related branches found
No related tags found
1 merge request!100Intersections with ray/line for all objects + various smaller additions
......@@ -63,7 +63,7 @@ template <int D, class ScalarT>
// ============== project to point ==============
template <int D, class ScalarT>
[[nodiscard]] constexpr pos<D, ScalarT> project(pos<D, ScalarT> const& p, pos<D, ScalarT> const& q)
[[nodiscard]] constexpr pos<D, ScalarT> project([[maybe_unused]] pos<D, ScalarT> const& p, pos<D, ScalarT> const& q)
{
return q;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment