Merge pull request #2301 from lioncash/const

General: Apply the const specifier where applicable
This commit is contained in:
Lioncash 2015-04-16 23:13:39 -04:00
commit 9eb608c9da
39 changed files with 75 additions and 75 deletions

View file

@ -44,7 +44,7 @@ unsigned int D3DBlob::Release()
return ref;
}
unsigned int D3DBlob::Size()
unsigned int D3DBlob::Size() const
{
return size;
}

View file

@ -24,7 +24,7 @@ public:
void AddRef();
unsigned int Release();
unsigned int Size();
unsigned int Size() const;
u8* Data();
private: