Skip to content

Commit 59df13c

Browse files
authored
fix(pubsub): build with MSVC+x86 (#5012)
1 parent 8acd9c3 commit 59df13c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

google/cloud/pubsub/internal/subscription_concurrency_control_test.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -260,9 +260,9 @@ TEST_F(SubscriptionConcurrencyControlTest, ParallelCallbacksRespectHwmLimit) {
260260
std::mutex handler_mu;
261261
std::condition_variable handler_cv;
262262

263-
std::size_t current_callbacks = 0;
264-
std::size_t total_callbacks = 0;
265-
std::size_t observed_hwm = 0;
263+
int current_callbacks = 0;
264+
int total_callbacks = 0;
265+
int observed_hwm = 0;
266266
auto delayed_handler = [&](pubsub::AckHandler h) {
267267
{
268268
std::lock_guard<std::mutex> lk(handler_mu);

0 commit comments

Comments
 (0)