summaryrefslogtreecommitdiff
path: root/src/buildtool/file_system/git_utils.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/buildtool/file_system/git_utils.cpp')
-rw-r--r--src/buildtool/file_system/git_utils.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buildtool/file_system/git_utils.cpp b/src/buildtool/file_system/git_utils.cpp
index 55d1ca38..8e45671b 100644
--- a/src/buildtool/file_system/git_utils.cpp
+++ b/src/buildtool/file_system/git_utils.cpp
@@ -103,7 +103,7 @@ void strarray_closer(gsl::owner<git_strarray*> strarray) {
void strarray_deleter(gsl::owner<git_strarray*> strarray) {
#ifndef BOOTSTRAP_BUILD_TOOL
if (strarray->strings != nullptr) {
- for (size_t i = 0; i < strarray->count; ++i) {
+ for (std::size_t i = 0; i < strarray->count; ++i) {
// NOLINTNEXTLINE(cppcoreguidelines-owning-memory,cppcoreguidelines-pro-bounds-pointer-arithmetic)
delete[] strarray->strings[i];
}