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> template<typename intType>
intType BitReader::showBits(byte bitCount) intType BitReader::showBits(byte bitCount)
{ {
auto tmp = this; auto tmp = *this;
return tmp->readBits<intType>(bitCount); return tmp.readBits<intType>(bitCount);
} }
/*! /*!