aboutsummaryrefslogtreecommitdiff
path: root/example/turing/src/state.h
diff options
context:
space:
mode:
Diffstat (limited to 'example/turing/src/state.h')
-rw-r--r--example/turing/src/state.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/example/turing/src/state.h b/example/turing/src/state.h
index 51fe347..fa3306b 100644
--- a/example/turing/src/state.h
+++ b/example/turing/src/state.h
@@ -42,8 +42,8 @@ template <
struct state_predicate {
template <typename State>
using function = tav::And<
- tav::IsEqualValue<Id, tav::Nth<field::ID, State>>,
- tav::IsEqualValue<Read, tav::Nth<field::READ, State>>
+ tav::IsEqual<Id, tav::Nth<field::ID, State>>,
+ tav::IsEqual<Read, tav::Nth<field::READ, State>>
>;
};