fix unused variables warnings

This commit is contained in:
SweetId 2023-10-15 13:17:52 -04:00
parent 091773be1b
commit 8e3b181c4f
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ namespace Nz
} }
template <typename TPropertyDetail> template <typename TPropertyDetail>
template <typename T> void EditorPropertyInspector<TPropertyDetail>::AddPropertyNoWrapper(T& prop, const std::string& name, const std::string& tooltip) template <typename T> void EditorPropertyInspector<TPropertyDetail>::AddPropertyNoWrapper(T& prop, const std::string& /*name*/, const std::string& /*tooltip*/)
{ {
TypeReflect<T>::Reflect(*this, prop); TypeReflect<T>::Reflect(*this, prop);
} }

View File

@ -92,7 +92,7 @@ namespace Nz
} }
template <AngleUnit Unit, typename T> template <AngleUnit Unit, typename T>
inline void End(Nz::Angle<Unit, T>& obj) {} inline void End(Nz::Angle<Unit, T>& /*obj*/) {}
} }
} }