aboutsummaryrefslogtreecommitdiff
path: root/ports/google-cloud-cpp/0001-fix-x86-build.patch
diff options
context:
space:
mode:
authorCarlos O'Ryan <coryan@users.noreply.github.com>2020-06-03 01:46:06 -0400
committerGitHub <noreply@github.com>2020-06-02 22:46:06 -0700
commit0dbc334ef55db4348b870bd3db12a0b4b7d96df8 (patch)
tree7ba78fde946cb62745d9825b9770e490855937a1 /ports/google-cloud-cpp/0001-fix-x86-build.patch
parent0243e00c53652d353ffd2a5fece01193a290254b (diff)
downloadvcpkg-0dbc334ef55db4348b870bd3db12a0b4b7d96df8.tar.gz
vcpkg-0dbc334ef55db4348b870bd3db12a0b4b7d96df8.zip
[google-cloud-cpp] Consolidate all google-cloud* packages (#11698)
* [google-cloud-cpp] Consolidate all google-cloud* packages Starting with the v1.14.0 release all google-cloud* packages and the googleapis package are kept in a single repository and released simultaneously. * Update CI baseline. google-cloud-cpp used to inherit failures from googleapis, which indicates these are (probably) problems in the generated protobuf/grpc code.
Diffstat (limited to 'ports/google-cloud-cpp/0001-fix-x86-build.patch')
-rw-r--r--ports/google-cloud-cpp/0001-fix-x86-build.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/ports/google-cloud-cpp/0001-fix-x86-build.patch b/ports/google-cloud-cpp/0001-fix-x86-build.patch
deleted file mode 100644
index ec3674cb7..000000000
--- a/ports/google-cloud-cpp/0001-fix-x86-build.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/google/cloud/storage/parallel_upload.h b/google/cloud/storage/parallel_upload.h
-index 44f542d..4fd97bd 100644
---- a/google/cloud/storage/parallel_upload.h
-+++ b/google/cloud/storage/parallel_upload.h
-@@ -515,7 +515,7 @@ StatusOr<std::vector<ParallelUploadFileShard>> CreateUploadShards(
-
- std::size_t const wanted_num_streams =
- (std::max<std::size_t>)(1,
-- (std::min)(max_streams,
-+ (std::min<std::size_t>)(max_streams,
- div_ceil(file_size, min_stream_size)));
-
- std::uintmax_t const stream_size =