Skip to content

Commit ea84797

Browse files
committed
cpp:gql:remove-append_range
1 parent ab7af56 commit ea84797

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpp/gql/src/gql_cli/src/app/utils.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ loadOperationsMapContainerFromInputs(
328328
localRegistry, (config::InputsConfig){ .graphql = pathsArray },
329329
configDirPath);
330330
if (!result.has_value()) {
331-
errors.append_range(result.error());
331+
errors.insert(errors.end(), result.error().begin(), result.error().end());
332332
continue;
333333
}
334334
schemas.emplace_back(result.value());

0 commit comments

Comments
 (0)