From bafafcc6ed6ac7beeff9daee89490913438fd2ca Mon Sep 17 00:00:00 2001 From: cxl Date: Thu, 18 May 2017 13:45:13 +0000 Subject: [PATCH] Core: Fixed issue with Bits::SetN overload git-svn-id: svn://ultimatepp.org/upp/trunk@11107 f0d560ea-af0d-0410-9eb7-867de7ffcac7 --- uppsrc/Core/Other.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uppsrc/Core/Other.h b/uppsrc/Core/Other.h index d1155ef2b..944556b4f 100644 --- a/uppsrc/Core/Other.h +++ b/uppsrc/Core/Other.h @@ -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();