diff options
author | Melody Horn <melody@boringcactus.com> | 2021-03-31 13:19:55 -0600 |
---|---|---|
committer | Melody Horn <melody@boringcactus.com> | 2021-03-31 13:19:55 -0600 |
commit | 9d3e0824a0966c648e951e5928c241700ee931fb (patch) | |
tree | b97a8a68329ac2d8bd75f9eb24d6f59b4835c539 /src/makefile/functions.rs | |
parent | 42bdec6488da15a12f2324526bf81abd389f2b4d (diff) | |
download | makers-9d3e0824a0966c648e951e5928c241700ee931fb.tar.gz makers-9d3e0824a0966c648e951e5928c241700ee931fb.zip |
"im not owned! im not owned!!", i continue to insist as i allocate and transform into a String
https://twitter.com/dril_rs/status/1035032121860009984
Diffstat (limited to 'src/makefile/functions.rs')
-rw-r--r-- | src/makefile/functions.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/makefile/functions.rs b/src/makefile/functions.rs index b4687c3..880ee7f 100644 --- a/src/makefile/functions.rs +++ b/src/makefile/functions.rs @@ -341,7 +341,7 @@ mod test { fn foreach() -> R { let mut macros = MacroSet::new(); macros.set( - "test".to_string(), + "test".to_owned(), MacroSource::File, "worked for $(item).".parse().unwrap(), ); @@ -364,7 +364,7 @@ mod test { fn call_test() -> R { let mut macros = MacroSet::new(); macros.set( - "reverse".to_string(), + "reverse".to_owned(), MacroSource::File, "$(2) $(1)".parse().unwrap(), ); |