freebsd-ports/audio/libsidplay2/files/patch-libsidplay::include::sidplay::SmartPtr.h
Kirill Ponomarev 1100885686 Fix build with gcc-3.4
PR:		ports/70627
Submitted by:	Ports Fury
2004-08-18 18:11:00 +00:00

26 lines
684 B
C

--- libsidplay/include/sidplay/SmartPtr.h.orig Tue Jun 15 05:08:04 2004
+++ libsidplay/include/sidplay/SmartPtr.h Wed Aug 18 00:47:50 2004
@@ -211,16 +211,16 @@
{
if ( bufferLen >= 1 )
{
- pBufCurrent = ( bufBegin = buffer );
- bufEnd = bufBegin + bufferLen;
- bufLen = bufferLen;
- status = true;
+ this->pBufCurrent = ( this->bufBegin = buffer );
+ this->bufEnd = this->bufBegin + bufferLen;
+ this->bufLen = bufferLen;
+ this->status = true;
}
else
{
- pBufCurrent = bufBegin = bufEnd = 0;
- bufLen = 0;
- status = false;
+ this->pBufCurrent = this->bufBegin = this->bufEnd = 0;
+ this->bufLen = 0;
+ this->status = false;
}
}
};