aboutsummaryrefslogtreecommitdiff
path: root/src/libexpr/primops
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2023-02-28 11:57:20 -0500
committerJohn Ericson <John.Ericson@Obsidian.Systems>2023-02-28 11:57:20 -0500
commit85bb865d200f04b73f183af722757c78d5a3be76 (patch)
treec82b05623cf8a02f55dde43e7605aab87aa24aae /src/libexpr/primops
parent123b11ff83da0cbcef6e4aae276bfbdd7a183656 (diff)
Revert "Remove some designated initializers"
This reverts commit ee9eb83a842eb97d0180fd9d349d30ff27fdb485.
Diffstat (limited to 'src/libexpr/primops')
-rw-r--r--src/libexpr/primops/fetchTree.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/primops/fetchTree.cc b/src/libexpr/primops/fetchTree.cc
index ffc6f5859..93592290f 100644
--- a/src/libexpr/primops/fetchTree.cc
+++ b/src/libexpr/primops/fetchTree.cc
@@ -250,7 +250,7 @@ static void fetch(EvalState & state, const PosIdx pos, Value * * args, Value & v
.method = unpack ? FileIngestionMethod::Recursive : FileIngestionMethod::Flat,
.hash = *expectedHash,
},
- /* .references = */ {}
+ .references = {}
});
if (state.store->isValidPath(expectedPath)) {