One more NULL->nullptr

pull/8638/head
Vijay Pai 8 years ago
parent b0a6be2b8f
commit 1b87ddee0a
  1. 4
      test/cpp/end2end/async_end2end_test.cc

@ -1110,7 +1110,7 @@ class AsyncEnd2endServerTryCancelTest : public AsyncEnd2endTest {
expected_cq_result = false;
}
std::thread* server_try_cancel_thd = NULL;
std::thread* server_try_cancel_thd = nullptr;
auto verif = Verifier(GetParam().disable_blocking);
@ -1148,7 +1148,7 @@ class AsyncEnd2endServerTryCancelTest : public AsyncEnd2endTest {
}
}
if (server_try_cancel_thd != NULL) {
if (server_try_cancel_thd != nullptr) {
server_try_cancel_thd->join();
delete server_try_cancel_thd;
}

Loading…
Cancel
Save