mirror of https://github.com/procxx/kepka.git
Remove useless bitfield qualifier
This commit is contained in:
parent
b7f1591e98
commit
22dbd6f757
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue