1
0
forked from 0ad/0ad

minor warning fixes: struct vs. class forward decl; size_t vs uint

This was SVN commit r3438.
This commit is contained in:
janwas 2006-01-29 18:38:40 +00:00
parent fcfa746244
commit 30284fc7c5
2 changed files with 4 additions and 4 deletions

View File

@ -70,9 +70,9 @@ struct JSObject; // The GUI stores a JSObject*, so needs to know that JSObject e
class IGUIObject;
class CGUISpriteInstance;
struct SGUIText;
class CColor;
class SGUIText;
class SGUIIcon;
struct CColor;
struct SGUIText;
struct SGUIIcon;
class CGUIString;
class CGUISprite;
struct SGUIImageEffects;

View File

@ -69,7 +69,7 @@ public:
// return this VBs batch list
const std::vector<Batch*>& GetBatches() const { return m_Batches; }
const uint GetVertexSize() const { return m_VertexSize; }
const size_t GetVertexSize() const { return m_VertexSize; }
// free memory
static void Shutdown();