diff options
Diffstat (limited to 'src/other_tools/utils')
-rw-r--r-- | src/other_tools/utils/parse_precomputed_root.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/other_tools/utils/parse_precomputed_root.cpp b/src/other_tools/utils/parse_precomputed_root.cpp index f30316e6..c5eebf90 100644 --- a/src/other_tools/utils/parse_precomputed_root.cpp +++ b/src/other_tools/utils/parse_precomputed_root.cpp @@ -84,9 +84,9 @@ namespace { return ComputedRoot{.repository = repo->String(), .target_module = target_module->String(), .target_name = target_module->String(), - .config = config.IsNotNull() - ? config->ToJson() - : nlohmann::json::object()}; + .config = config.IsNotNull() ? config->ToJson() + : nlohmann::json::object(), + .absent = false}; } [[nodiscard]] auto ParseTreeStructureRoot(ExpressionPtr const& repository) |