diff options
| author | Mateusz Mikuła <matti@marinelayer.io> | 2019-08-22 11:44:57 +0200 |
|---|---|---|
| committer | Mateusz Mikuła <mati865@gmail.com> | 2019-08-22 12:02:02 +0200 |
| commit | b7ad3f9fc4b293fd5ada4b975910be26105e5847 (patch) | |
| tree | a4c5c97403155506f3fa552776d3bc30810789a1 | |
| parent | 42dcd4b7c5fb7b61bc2f4c0842f66e5ad40057e4 (diff) | |
Apply clippy::redundant_field_names suggestion
| -rw-r--r-- | src/build_helper/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/build_helper/lib.rs b/src/build_helper/lib.rs index a1aa18922b5..131d2034675 100644 --- a/src/build_helper/lib.rs +++ b/src/build_helper/lib.rs @@ -262,7 +262,7 @@ pub fn native_lib_boilerplate( if !up_to_date(Path::new("build.rs"), ×tamp) || !up_to_date(src_dir, ×tamp) { Ok(NativeLibBoilerplate { src_dir: src_dir.to_path_buf(), - out_dir: out_dir, + out_dir, }) } else { Err(()) |
