Skip to content

Commit f64a625

Browse files
committedMay 22, 2016
Fix a m_camera not used warning fix pointed by clang
1 parent ce42ff9 commit f64a625

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed
 

‎src/content_cao.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -546,7 +546,6 @@ GenericCAO::GenericCAO(IGameDef *gamedef, ClientEnvironment *env):
546546
//
547547
m_smgr(NULL),
548548
m_irr(NULL),
549-
m_camera(NULL),
550549
m_gamedef(NULL),
551550
m_selection_box(-BS/3.,-BS/3.,-BS/3., BS/3.,BS/3.,BS/3.),
552551
m_meshnode(NULL),
@@ -804,7 +803,7 @@ void GenericCAO::removeFromScene(bool permanent)
804803
}
805804
}
806805

807-
void GenericCAO::addToScene(scene::ISceneManager *smgr,
806+
void GenericCAO::addToScene(scene::ISceneManager *smgr,
808807
ITextureSource *tsrc, IrrlichtDevice *irr)
809808
{
810809
m_smgr = smgr;

‎src/content_cao.h

+1-2
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ class GenericCAO : public ClientActiveObject
6868
//
6969
scene::ISceneManager *m_smgr;
7070
IrrlichtDevice *m_irr;
71-
Camera* m_camera;
7271
IGameDef *m_gamedef;
7372
aabb3f m_selection_box;
7473
scene::IMeshSceneNode *m_meshnode;
@@ -206,7 +205,7 @@ class GenericCAO : public ClientActiveObject
206205
float time_from_last_punch=1000000);
207206

208207
std::string debugInfoText();
209-
208+
210209
std::string infoText()
211210
{
212211
return m_prop.infotext;

0 commit comments

Comments
 (0)
Please sign in to comment.