Core: Fixed issue with Bits::SetN overload

git-svn-id: svn://ultimatepp.org/upp/trunk@11107 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2017-05-18 13:45:13 +00:00
parent 51add7fbd5
commit bafafcc6ed

View file

@ -136,7 +136,7 @@ public:
uint64 Get64(int i, int count);
void SetN(int i, bool b, int count);
void SetN(int i, int count) { SetN(i, count, true); }
void SetN(int i, int count) { SetN(i, true, count); }
void Reserve(int nbits);
void Shrink();