aboutsummaryrefslogtreecommitdiff
path: root/src/libexpr/eval-error.hh
diff options
context:
space:
mode:
authorQyriad <qyriad@qyriad.me>2024-04-04 10:46:44 -0600
committerjade <lix@jade.fyi>2024-04-06 04:35:25 +0000
commita4ef195a9f4c0e018673a872f8f3020cc5337a36 (patch)
tree0c6dd483a2073130316b49937f6e2d4fab49870f /src/libexpr/eval-error.hh
parentb47c159aec9aa5d8d1807319123a53f87624fafa (diff)
always re-eval cached failures
This is terrible UX, and frankly an eval failure should be a cache invalidation anyway. This removes the CachedEvalError type entirely. Fixes #223. Change-Id: I91f8003eabd0ea45003024e96d1de3c7ae8e49d8
Diffstat (limited to 'src/libexpr/eval-error.hh')
-rw-r--r--src/libexpr/eval-error.hh1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libexpr/eval-error.hh b/src/libexpr/eval-error.hh
index 43e6718b0..2fb6bcf41 100644
--- a/src/libexpr/eval-error.hh
+++ b/src/libexpr/eval-error.hh
@@ -44,7 +44,6 @@ MakeError(TypeError, EvalError);
MakeError(UndefinedVarError, EvalError);
MakeError(MissingArgumentError, EvalError);
MakeError(RestrictedPathError, Error);
-MakeError(CachedEvalError, EvalError);
MakeError(InfiniteRecursionError, EvalError);
struct InvalidPathError : public EvalError