aboutsummaryrefslogtreecommitdiff
path: root/example/turing/src/tape.h
diff options
context:
space:
mode:
Diffstat (limited to 'example/turing/src/tape.h')
-rw-r--r--example/turing/src/tape.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/example/turing/src/tape.h b/example/turing/src/tape.h
index 4f79bd9..94c9536 100644
--- a/example/turing/src/tape.h
+++ b/example/turing/src/tape.h
@@ -5,6 +5,7 @@
#include "list/list.h"
#include "list/operation/replace_nth.h"
#include "conditional/if.h"
+#include "function/apply.h"
namespace machine {
@@ -26,7 +27,7 @@ template <
>
using readSymbol = tav::Eval<tav::If<
tav::LowerThan<Position, tav::Length<Tape>>,
- tav::utility::defer_eval<tav::Nth, Position, Tape>,
+ tav::Apply<tav::Nth, Position, Tape>,
BLANK
>>;