Skip to content

Commit c682643

Browse files
committed
Fix build break
1 parent f8e5431 commit c682643

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/graphqlservice/GraphQLClient.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ struct ModifiedVariable
9898
{
9999
response::Value result { response::Type::List };
100100

101-
result.reserve(values.size());
101+
result.reserve(listValue.size());
102102
std::for_each(listValue.begin(), listValue.end(), [&result](auto& value) {
103103
result.emplace_back(serialize<Other...>(std::move(value)));
104104
});

0 commit comments

Comments
 (0)