Skip to content

Commit

Permalink
src: fix coverity warning
Browse files Browse the repository at this point in the history
- reduce copying by using std::move

Signed-off-by: Michael Dawson <midawson@redhat.com>
PR-URL: #50846
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
  • Loading branch information
mhdawson authored and UlisesGascon committed Dec 19, 2023
1 parent 2ddeead commit 158db2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/node_contextify.cc
Expand Up @@ -1473,7 +1473,7 @@ void ContextifyContext::ContainsModuleSyntax(
ContextifyContext::CompileFunctionAndCacheResult(env,
context,
&source,
params,
std::move(params),
std::vector<Local<Object>>(),
options,
true,
Expand Down

0 comments on commit 158db2d

Please sign in to comment.