修正异常里的函数名

This commit is contained in:
tanzhongwu 2021-03-04 10:14:09 +08:00 committed by ruanshudong
parent f2acbcb0d4
commit 64ce7ae963

View File

@ -269,7 +269,7 @@ int TC_BitMap::clear4all(unsigned iBit)
if (iBit != (unsigned)(-1) && iBit > _bitmaps.size())
{
throw TC_BitMap_Exception("[TC_BitMap::get] bit beyond range:"+TC_Common::tostr(iBit)+">"+TC_Common::tostr(_bitmaps.size()));
throw TC_BitMap_Exception("[TC_BitMap::clear4all] bit beyond range:"+TC_Common::tostr(iBit)+">"+TC_Common::tostr(_bitmaps.size()));
}
for (vector<BitMap>::size_type i = 0; i < _bitmaps.size(); i++)