fix unused variables warnings
This commit is contained in:
parent
091773be1b
commit
8e3b181c4f
|
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -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*/) {}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue