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>
  • Loading branch information
mhdawson committed Nov 22, 2023
1 parent 1858341 commit 9b4b586
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/node_contextify.cc
Expand Up @@ -1472,7 +1472,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 9b4b586

Please sign in to comment.