Commit b3893f18 authored by Amy Huang's avatar Amy Huang Committed by Commit Bot

Fix compile error emitted by trunk clang

Error introduced by https://github.com/llvm/llvm-project/commit/9ce6dc98
    on implicit nullptr to bool conversions that clang used to warn on.

Bug: 1051175
Change-Id: If13318abe4fcc6336104bf730e6671d82f1834af
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2050034
Commit-Queue: Amy Huang <akhuang@google.com>
Reviewed-by: default avatarEric Orth <ericorth@chromium.org>
Cr-Commit-Position: refs/heads/master@{#740480}
parent d3aed038
...@@ -834,7 +834,7 @@ class DnsTransactionTestBase : public testing::Test { ...@@ -834,7 +834,7 @@ class DnsTransactionTestBase : public testing::Test {
request_context_ = std::make_unique<TestURLRequestContext>(); request_context_ = std::make_unique<TestURLRequestContext>();
resolve_context_ = std::make_unique<ResolveContext>( resolve_context_ = std::make_unique<ResolveContext>(
request_context_.get(), nullptr /* host_cache */); request_context_.get(), false /* enable_caching */);
ConfigureFactory(); ConfigureFactory();
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment