Skip to content

Commit

Permalink
修正异常里的函数名
Browse files Browse the repository at this point in the history
  • Loading branch information
tanzhongwu authored and ruanshudong committed Mar 4, 2021
1 parent f2acbcb commit 64ce7ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/src/tc_bitmap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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++)
Expand Down

0 comments on commit 64ce7ae

Please sign in to comment.