Skip to content

Commit 893aff5

Browse files
committed
clangimport.cpp: fixed performance-move-const-arg clang-tidy warning
1 parent 1d3d378 commit 893aff5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/clangimport.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ namespace clangimport {
305305
if (it != mNotFound.end()) {
306306
for (Token *reftok: it->second)
307307
ref(addr, reftok);
308-
mNotFound.erase(std::move(it));
308+
mNotFound.erase(it);
309309
}
310310
}
311311

0 commit comments

Comments
 (0)