@@ -, +, @@ =?UTF-8?q?=20was=20not=20declared=20in=20this=20scope?= --- p7zip/CPP/7zip/Compress/LzhDecoder.h | 2 +- p7zip/CPP/Common/DynamicBuffer.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) --- a/p7zip/CPP/7zip/Compress/LzhDecoder.h +++ a/p7zip/CPP/7zip/Compress/LzhDecoder.h @@ -39,7 +39,7 @@ public: { if (Symbol >= 0) return (UInt32)Symbol; - return DecodeSymbol(bitStream); + return this->DecodeSymbol(bitStream); } }; --- a/p7zip/CPP/Common/DynamicBuffer.h +++ a/p7zip/CPP/Common/DynamicBuffer.h @@ -17,7 +17,7 @@ template class CDynamicBuffer: public CBuffer else delta = 4; delta = MyMax(delta, size); - SetCapacity(this->_capacity + delta); + this->SetCapacity(this->_capacity + delta); } public: CDynamicBuffer(): CBuffer() {}; @@ -28,7 +28,7 @@ public: this->Free(); if (buffer._capacity > 0) { - SetCapacity(buffer._capacity); + this->SetCapacity(buffer._capacity); memmove(this->_items, buffer._items, buffer._capacity * sizeof(T)); } return *this; --