Fix warnings reported by clang
parent
5f9962e1cc
commit
37b7f094e3
|
@ -61,8 +61,8 @@ public:
|
|||
virtual scene::IMeshSceneNode *getMeshSceneNode(){return NULL;}
|
||||
virtual scene::IAnimatedMeshSceneNode *getAnimatedMeshSceneNode(){return NULL;}
|
||||
virtual scene::IBillboardSceneNode *getSpriteSceneNode(){return NULL;}
|
||||
virtual bool isPlayer(){return false;}
|
||||
virtual bool isLocalPlayer(){return false;}
|
||||
virtual bool isPlayer() const {return false;}
|
||||
virtual bool isLocalPlayer() const {return false;}
|
||||
virtual void setAttachments(){}
|
||||
virtual bool doShowSelectionBox(){return true;}
|
||||
virtual void updateCameraOffset(v3s16 camera_offset){};
|
||||
|
@ -120,4 +120,3 @@ struct DistanceSortedActiveObject
|
|||
};
|
||||
|
||||
#endif
|
||||
|
||||
|
|
|
@ -197,4 +197,3 @@ public:
|
|||
|
||||
|
||||
#endif
|
||||
|
||||
|
|
|
@ -54,10 +54,10 @@ private:
|
|||
HANDLE m_hSemaphore;
|
||||
#elif __MACH__
|
||||
semaphore_t m_semaphore;
|
||||
int semcount;
|
||||
#else
|
||||
sem_t m_semaphore;
|
||||
#endif
|
||||
int semcount;
|
||||
};
|
||||
|
||||
|
||||
|
|
|
@ -381,8 +381,6 @@ public:
|
|||
#endif
|
||||
|
||||
private:
|
||||
IrrlichtDevice *m_device;
|
||||
|
||||
// The current state of keys
|
||||
KeyList keyIsDown;
|
||||
// Whether a key has been pressed or not
|
||||
|
|
|
@ -211,8 +211,7 @@ public:
|
|||
class MainShaderConstantSetter : public IShaderConstantSetter
|
||||
{
|
||||
public:
|
||||
MainShaderConstantSetter(IrrlichtDevice *device):
|
||||
m_device(device)
|
||||
MainShaderConstantSetter(IrrlichtDevice *device)
|
||||
{}
|
||||
~MainShaderConstantSetter() {}
|
||||
|
||||
|
@ -256,9 +255,6 @@ public:
|
|||
services->setVertexShaderConstant(world.pointer(), 8, 4);
|
||||
|
||||
}
|
||||
|
||||
private:
|
||||
IrrlichtDevice *m_device;
|
||||
};
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in New Issue