From 9a8f00b6048c2ab62695cb3f9d65f75558559ce3 Mon Sep 17 00:00:00 2001 From: Allan Sandfeld Jensen Date: Wed, 16 Nov 2022 14:03:29 +0100 Subject: FIXUP: Silence most warnings Change-Id: I9ab7cd2affd116470a4b345a534502d9dff4e7de Reviewed-on: https://codereview.qt-project.org/c/qt/qtwebengine-chromium/+/443705 Reviewed-by: Peter Varga --- chromium/base/token.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'chromium') diff --git a/chromium/base/token.h b/chromium/base/token.h index bbc5e198b54..6fff45d32bc 100644 --- a/chromium/base/token.h +++ b/chromium/base/token.h @@ -29,7 +29,7 @@ class BASE_EXPORT Token { constexpr Token() = default; // Constructs a Token with |high| and |low| as its contents. - constexpr Token(uint64_t high, uint64_t low) : words_{high, low} {} + constexpr Token(uint64_t high, uint64_t low) : words_{{high, low}} {} constexpr Token(const Token&) = default; constexpr Token& operator=(const Token&) = default; -- cgit v1.2.1