diff options
| author | Laurenz <laurmaedje@gmail.com> | 2021-07-08 23:36:20 +0200 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2021-07-08 23:36:20 +0200 |
| commit | 0c74290519ee999002e9cc99ba3d272d68e1014f (patch) | |
| tree | 8134b8aeabb9d5af4c50667de6b2c6532c6b8422 /src/exec/mod.rs | |
| parent | 02b586cc36fad58a622ecb439e1cf3a76a347207 (diff) | |
Compare functions and templates by identity
Diffstat (limited to 'src/exec/mod.rs')
| -rw-r--r-- | src/exec/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/exec/mod.rs b/src/exec/mod.rs index 8e369d12..fc829676 100644 --- a/src/exec/mod.rs +++ b/src/exec/mod.rs @@ -152,7 +152,7 @@ impl Exec for Value { impl Exec for TemplateValue { fn exec(&self, ctx: &mut ExecContext) { - for node in self { + for node in self.iter() { node.exec(ctx); } } |
