From 301f3887163eb6f75f6564b7772cb95f1bb68194 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 29 Aug 2022 15:43:43 +0200 Subject: [PATCH] Remove FIXME We don't need to return the accessor here (in fact it rarely makes sense to return a path from the EvalCache). --- src/libexpr/eval-cache.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/src/libexpr/eval-cache.cc b/src/libexpr/eval-cache.cc index 1c43b37c2..9a1347605 100644 --- a/src/libexpr/eval-cache.cc +++ b/src/libexpr/eval-cache.cc @@ -443,7 +443,6 @@ Value & AttrCursor::forceValue() cachedValue = {root->db->setString(getKey(), v.string.s, v.string.context), string_t{v.string.s, {}}}; else if (v.type() == nPath) { - // FIXME: take accessor into account? auto path = v.path().path; cachedValue = {root->db->setString(getKey(), path.abs()), string_t{path.abs(), {}}}; }