diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/makefile/macro.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/makefile/macro.rs b/src/makefile/macro.rs index f6bedca..831ec5e 100644 --- a/src/makefile/macro.rs +++ b/src/makefile/macro.rs @@ -163,7 +163,7 @@ impl<'parent, 'lookup> Set<'parent, 'lookup> { data: HashMap::new(), lookup_internal: Some(lookup), #[cfg(feature = "full")] - to_eval: Default::default(), + to_eval: Rc::clone(&self.to_eval), } } @@ -173,7 +173,7 @@ impl<'parent, 'lookup> Set<'parent, 'lookup> { data: HashMap::new(), lookup_internal: None, #[cfg(feature = "full")] - to_eval: Default::default(), + to_eval: Rc::clone(&self.to_eval), } } } |