From c417b45469d43861f95477a4762e1954e30abeed Mon Sep 17 00:00:00 2001 From: Berkus Decker <berkus@madfire.net> Date: Wed, 20 Dec 2017 03:03:41 +0200 Subject: [PATCH] Remove useless bitfield qualifier --- Telegram/SourceFiles/ui/text/text.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Telegram/SourceFiles/ui/text/text.h b/Telegram/SourceFiles/ui/text/text.h index 274d32d6a..e82bda720 100644 --- a/Telegram/SourceFiles/ui/text/text.h +++ b/Telegram/SourceFiles/ui/text/text.h @@ -66,8 +66,8 @@ struct TextSelection { constexpr bool empty() const { return from == to; } - quint16 from : 16; - quint16 to : 16; + quint16 from; + quint16 to; }; inline bool operator==(TextSelection a, TextSelection b) { return a.from == b.from && a.to == b.to;