File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -245,7 +245,7 @@ StatusOr<ListBucketsResponse> ListBucketsResponse::FromHttpResponse(
245245
246246 if (json.count (" unreachable" ) != 0 ) {
247247 for (auto const & kv : json[" unreachable" ].items ()) {
248- result.unreachable .emplace_back (kv.value ().get <std::string>());
248+ result.unreachable .push_back (kv.value ().get <std::string>());
249249 }
250250 }
251251
Original file line number Diff line number Diff line change @@ -595,7 +595,7 @@ struct RequestedPolicyVersion
595595 *
596596 * By default requests listing resources only includs the latest (live) version
597597 * of each resource, set this option to `true` to get list of unreachable
598- * regions .
598+ * resources .
599599 */
600600struct ReturnPartialSuccess
601601 : public internal::WellKnownParameter<ReturnPartialSuccess, bool > {
You can’t perform that action at this time.
0 commit comments