Skip to content

Commit 3a7edcd

Browse files
committed
Remove a stray std::move call on a const reference
1 parent f724528 commit 3a7edcd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

GraphQLService.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ struct ModifiedArgument
129129
{
130130
try
131131
{
132-
return { require(std::move(name), arguments), true };
132+
return { require(name, arguments), true };
133133
}
134134
catch (const schema_exception&)
135135
{

0 commit comments

Comments
 (0)