Fix some GCC warnings

Former-commit-id: fc3fa0fba08f558fc78eae72efdd150da9110a31
This commit is contained in:
Lynix
2016-05-25 13:52:10 +02:00
parent 3fef3d4779
commit b2f1762148
19 changed files with 113 additions and 54 deletions

View File

@@ -13,6 +13,7 @@ namespace Nz
template<typename T>
HandledObject<T>::HandledObject(const HandledObject& object)
{
NazaraUnused(object);
// Don't copy anything, we're a copy of the object, we have no handle right now
}
@@ -40,7 +41,7 @@ namespace Nz
HandledObject<T>& HandledObject<T>::operator=(const HandledObject& object)
{
// Nothing to do
return *this;
return *this;
}
template<typename T>