1
0

Fixed issues with gcc

This commit is contained in:
Tycho 2014-04-27 07:10:30 -07:00
parent e3bdc81ca0
commit 2730a41946

View File

@ -36,8 +36,8 @@ public:
#if __cplusplus < 201103L #if __cplusplus < 201103L
// auto_ptr style interface for memory management // auto_ptr style interface for memory management
cChunkBuffer(cChunkBuffer& other) : cChunkBuffer(const cChunkBuffer& other) :
IsOwner(true); IsOwner(true)
{ {
for (int i = 0; i < CHUNK_SECTION_NUM; i++) for (int i = 0; i < CHUNK_SECTION_NUM; i++)
{ {
@ -45,7 +45,8 @@ public:
} }
other.IsOwner = false; other.IsOwner = false;
} }
void operator=(cChunkBuffer& other)
void operator=(const cChunkBuffer& other)
{ {
if(IsOwner) if(IsOwner)
{ {
@ -63,7 +64,7 @@ public:
} }
#else #else
// unique_ptr style interface for memory management // unique_ptr style interface for memory management
cChunkBuffer(cChunkBuffer&& other) cChunkBuffer(const cChunkBuffer&& other)
{ {
for (int i = 0; i < CHUNK_SECTION_NUM; i++) for (int i = 0; i < CHUNK_SECTION_NUM; i++)
{ {
@ -71,7 +72,7 @@ public:
} }
} }
void operator=(cChunkBuffer&& other) void operator=(const cChunkBuffer&& other)
{ {
for (int i = 0; i < CHUNK_SECTION_NUM; i++) for (int i = 0; i < CHUNK_SECTION_NUM; i++)
{ {
@ -225,7 +226,7 @@ private:
#if __cplusplus < 201103L #if __cplusplus < 201103L
// auto_ptr style interface for memory management // auto_ptr style interface for memory management
bool IsOwner; mutable bool IsOwner;
#endif #endif
struct sChunkSection { struct sChunkSection {