commit | e0fa099c85a7975be5609c7af10fc375a15a6304 | [log] [tgz] |
---|---|---|
author | Andrew Shulaev <ddrone@google.com> | Thu Nov 12 12:26:01 2020 +0000 |
committer | Andrew Shulaev <ddrone@google.com> | Thu Nov 12 12:26:01 2020 +0000 |
tree | 3347dbb8e3cc8097a41be3c307e3eea1d4a389d9 | |
parent | cd3499443c99a478748f67989614006cad844de6 [diff] |
Replace atomic_uint32_t with atomic<uint32_t> Change-Id: If344c7b86f1fba9a8fe2ac38d02c571a8c94bb97
diff --git a/src/tracing/internal/tracing_muxer_impl.h b/src/tracing/internal/tracing_muxer_impl.h index 5d67413..8089620 100644 --- a/src/tracing/internal/tracing_muxer_impl.h +++ b/src/tracing/internal/tracing_muxer_impl.h
@@ -379,7 +379,7 @@ // Maximum number of times we will try to reconnect producer backend. // Should only be modified for testing purposes. - std::atomic_uint32_t max_producer_reconnections_{100u}; + std::atomic<uint32_t> max_producer_reconnections_{100u}; PERFETTO_THREAD_CHECKER(thread_checker_) };