Explicitly initialize atomic value; change its type to unsigned.

PiperOrigin-RevId: 501935970
This commit is contained in:
hai007
2023-01-13 14:12:44 -08:00
committed by Copybara-Service
parent f94aa7548b
commit dab0ead924
@@ -2739,8 +2739,7 @@ namespace winrt::impl
}
private:
std::atomic<int32_t> m_count;
std::atomic<uint32_t> m_count{0};
};
constexpr uint32_t hstring_reference_flag{ 1 };