mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 21:58:48 +00:00
Merge pull request #2301 from lioncash/const
General: Apply the const specifier where applicable
This commit is contained in:
commit
9eb608c9da
39 changed files with 75 additions and 75 deletions
|
@ -44,7 +44,7 @@ unsigned int D3DBlob::Release()
|
|||
return ref;
|
||||
}
|
||||
|
||||
unsigned int D3DBlob::Size()
|
||||
unsigned int D3DBlob::Size() const
|
||||
{
|
||||
return size;
|
||||
}
|
||||
|
|
|
@ -24,7 +24,7 @@ public:
|
|||
void AddRef();
|
||||
unsigned int Release();
|
||||
|
||||
unsigned int Size();
|
||||
unsigned int Size() const;
|
||||
u8* Data();
|
||||
|
||||
private:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue