Skip to content
Snippets Groups Projects
Commit 5bd638d4 authored by Perttu Ahola's avatar Perttu Ahola
Browse files

Const-correct SharedBuffer::SharedBuffer(const T *t, unsigned int size)

parent eca1c964
No related branches found
No related tags found
No related merge requests found
......@@ -222,7 +222,7 @@ class SharedBuffer
/*
Copies whole buffer
*/
SharedBuffer(T *t, unsigned int size)
SharedBuffer(const T *t, unsigned int size)
{
m_size = size;
if(m_size != 0)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment