From a3a0d6a1fa880b324576bb073637e021c57b0e65 Mon Sep 17 00:00:00 2001 From: Adrian Kummerlaender Date: Tue, 24 Feb 2015 16:51:37 +0100 Subject: Replaced `utility::defer_eval` with placeholder-less `Apply` * usage of `Apply` sans placeholders was already possible and as such duplicated `utility::defer_eval` * renamed `apply_none`'s type alias from to `type` to enable combining it with `Eval` --- example/turing/src/tape.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'example/turing/src/tape.h') 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::utility::defer_eval, + tav::Apply, BLANK >>; -- cgit v1.2.3