Skip to content

Commit 5b545db

Browse files
generatedunixname89002005320881meta-codesync[bot]
authored andcommitted
Fix clippy::needless_borrows_for_generic_args issues in fbcode/monarch/rdmaxcel-sys (#2130)
Summary: Pull Request resolved: #2130 Reviewed By: cjlongoria Differential Revision: D88927076 fbshipit-source-id: fc2aeb94a12d9db95889f61330c32e3e2aa8400f
1 parent 49547b1 commit 5b545db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rdmaxcel-sys/build.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ fn main() {
200200
build
201201
.file(&c_source_path)
202202
.include(format!("{}/src", manifest_dir))
203-
.include(&rdma_include)
203+
.include(rdma_include)
204204
.flag("-fPIC");
205205

206206
// Add CUDA include paths - reuse the paths we already found for bindgen
@@ -220,7 +220,7 @@ fn main() {
220220
.file(&cpp_source_path)
221221
.file(&driver_api_cpp_path)
222222
.include(format!("{}/src", manifest_dir))
223-
.include(&rdma_include)
223+
.include(rdma_include)
224224
.flag("-fPIC")
225225
.cpp(true)
226226
.flag("-std=c++14");

0 commit comments

Comments
 (0)