This commit is contained in:
Nikita Titov 2020-10-07 13:02:25 +03:00 коммит произвёл GitHub
Родитель 967a7814a7
Коммит 7a51ae042a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -120,9 +120,9 @@ class StringArray
* @param num_elements Number of strings to store in the array.
* @param string_size The size of each string in the array.
*/
void _allocate_strings(int num_elements, int string_size)
void _allocate_strings(size_t num_elements, size_t string_size)
{
for (int i = 0; i < num_elements; ++i)
for (size_t i = 0; i < num_elements; ++i)
{
// Leave space for \0 terminator:
_array[i] = new (std::nothrow) char[string_size + 1];