Fixing bad function signature.

This commit is contained in:
Daniel Lemire 2020-10-02 11:00:09 -04:00
parent 894cebfb2b
commit 85ccea69e8

View File

@ -147,9 +147,9 @@ namespace cxxopts
inline
String&
stringAppend(String& s, int n, UChar32 c)
stringAppend(String& s, size_t n, UChar32 c)
{
for (int i = 0; i != n; ++i)
for (size_t i = 0; i != n; ++i)
{
s.append(c);
}