fixed showBits()

This commit is contained in:
Martchus 2016-01-27 01:13:30 +01:00
parent 80a4ce1790
commit 7299299a40
1 changed files with 2 additions and 2 deletions

View File

@ -94,8 +94,8 @@ inline byte BitReader::readBit()
template<typename intType>
intType BitReader::showBits(byte bitCount)
{
auto tmp = this;
return tmp->readBits<intType>(bitCount);
auto tmp = *this;
return tmp.readBits<intType>(bitCount);
}
/*!