Merge pull request #2149 from lamber-ken/master

change the return type of funciton countEqual
This commit is contained in:
alexey-milovidov 2018-04-01 20:31:02 +03:00 committed by GitHub
commit 588591f683
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -179,7 +179,7 @@ struct IndexIdentity
/// For countEqual.
struct IndexCount
{
using ResultType = UInt32;
using ResultType = UInt64;
static bool apply(size_t, ResultType & current) { ++current; return true; }
};