diff options
Diffstat (limited to 'src/other_tools/utils')
-rw-r--r-- | src/other_tools/utils/parse_precomputed_root.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/other_tools/utils/parse_precomputed_root.cpp b/src/other_tools/utils/parse_precomputed_root.cpp index a27c7989..7b9ef519 100644 --- a/src/other_tools/utils/parse_precomputed_root.cpp +++ b/src/other_tools/utils/parse_precomputed_root.cpp @@ -67,7 +67,7 @@ namespace { if (not repo.IsNotNull()) { return unexpected<std::string>{"Mandatory key \"repo\" is missing"}; } - return TreeStructureRoot{.repository = repo->String()}; + return TreeStructureRoot{.repository = repo->String(), .absent = false}; } } // namespace |