From 8e3b181c4fe55ed1fd94631413c54321751a7435 Mon Sep 17 00:00:00 2001 From: SweetId <2630750+SweetId@users.noreply.github.com> Date: Sun, 15 Oct 2023 13:17:52 -0400 Subject: [PATCH] fix unused variables warnings --- include/NazaraEditor/Core/Reflection/Editor.inl | 2 +- include/NazaraEditor/Core/Reflection/Math.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/NazaraEditor/Core/Reflection/Editor.inl b/include/NazaraEditor/Core/Reflection/Editor.inl index ec658bf..bfa8677 100644 --- a/include/NazaraEditor/Core/Reflection/Editor.inl +++ b/include/NazaraEditor/Core/Reflection/Editor.inl @@ -13,7 +13,7 @@ namespace Nz } template - template void EditorPropertyInspector::AddPropertyNoWrapper(T& prop, const std::string& name, const std::string& tooltip) + template void EditorPropertyInspector::AddPropertyNoWrapper(T& prop, const std::string& /*name*/, const std::string& /*tooltip*/) { TypeReflect::Reflect(*this, prop); } diff --git a/include/NazaraEditor/Core/Reflection/Math.hpp b/include/NazaraEditor/Core/Reflection/Math.hpp index 05785c7..e255f16 100644 --- a/include/NazaraEditor/Core/Reflection/Math.hpp +++ b/include/NazaraEditor/Core/Reflection/Math.hpp @@ -92,7 +92,7 @@ namespace Nz } template - inline void End(Nz::Angle& obj) {} + inline void End(Nz::Angle& /*obj*/) {} } } \ No newline at end of file