Skip to content

Commit

Permalink
Fix ctad-maybe-unsupported error for internal builds
Browse files Browse the repository at this point in the history
Signed-off-by: Yan Avlasov <yavlasov@google.com>
  • Loading branch information
yanavlasov committed Apr 3, 2024
1 parent 06ea913 commit 4dfd5d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mobile/test/cc/engine_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
namespace Envoy {

TEST(EngineTest, SetLogger) {
std::atomic logging_was_called{false};
std::atomic<bool> logging_was_called{false};
auto logger = std::make_unique<EnvoyLogger>();
logger->on_log_ = [&](Logger::Logger::Levels, const std::string&) { logging_was_called = true; };

Expand Down

0 comments on commit 4dfd5d4

Please sign in to comment.