summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--chromium/base/token.h2
1 files changed, 1 insertions, 1 deletions
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;