Throw IO failure always via throwIoFailure

This commit is contained in:
Martchus 2016-08-06 21:20:25 +02:00
parent ed527021f9
commit 551867485c
1 changed files with 2 additions and 1 deletions

View File

@ -3,6 +3,7 @@
#include "../conversion/types.h"
#include "../application/global.h"
#include "../io/catchiofailure.h"
#include <ios>
#include <iostream>
@ -70,7 +71,7 @@ intType BitReader::readBits(byte bitCount)
for(byte readAtOnce; bitCount; bitCount -= readAtOnce) {
if(!m_bitsAvail) {
if(++m_buffer >= m_end) {
throw std::ios_base::failure("end of buffer exceeded");
throwIoFailure("end of buffer exceeded");
}
m_bitsAvail = 8;
}