mirror of
https://github.com/luanti-org/luanti.git
synced 2025-07-02 16:38:41 +00:00
Const-correct SharedBuffer::SharedBuffer(const T *t, unsigned int size)
This commit is contained in:
parent
eca1c96412
commit
5bd638d4a5
1 changed files with 1 additions and 1 deletions
|
@ -222,7 +222,7 @@ public:
|
||||||
/*
|
/*
|
||||||
Copies whole buffer
|
Copies whole buffer
|
||||||
*/
|
*/
|
||||||
SharedBuffer(T *t, unsigned int size)
|
SharedBuffer(const T *t, unsigned int size)
|
||||||
{
|
{
|
||||||
m_size = size;
|
m_size = size;
|
||||||
if(m_size != 0)
|
if(m_size != 0)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue