diff options
author | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2025-04-01 17:26:09 +0200 |
---|---|---|
committer | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2025-04-01 18:21:16 +0200 |
commit | 5acb2eb73193a86106603d7c5338118b3e6193cd (patch) | |
tree | 778b2e168d1047096c4fe8827ebeace7606cc984 /src/buildtool/file_system/git_repo.cpp | |
parent | 1324f45fa7b1938b39854f7b38d981c238da2fbc (diff) | |
download | justbuild-5acb2eb73193a86106603d7c5338118b3e6193cd.tar.gz |
git_repo: Add missing include in debug mode
Diffstat (limited to 'src/buildtool/file_system/git_repo.cpp')
-rw-r--r-- | src/buildtool/file_system/git_repo.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/buildtool/file_system/git_repo.cpp b/src/buildtool/file_system/git_repo.cpp index 2c27cda9..7b11486c 100644 --- a/src/buildtool/file_system/git_repo.cpp +++ b/src/buildtool/file_system/git_repo.cpp @@ -37,6 +37,9 @@ #include "src/utils/cpp/file_locking.hpp" #include "src/utils/cpp/hex_string.hpp" #include "src/utils/cpp/tmp_dir.hpp" +#ifndef NDEBUG +#include "src/utils/cpp/gsl.hpp" +#endif extern "C" { #include <git2.h> |