Merge pull request #41841 from madmiraal/fix-bit-fields
Remove bit fields and use fixed width integers instead.
This commit is contained in:
commit
f29c112492
1 changed files with 4 additions and 4 deletions
|
@ -79,10 +79,10 @@ private:
|
||||||
struct Line {
|
struct Line {
|
||||||
Vector<Gutter> gutters;
|
Vector<Gutter> gutters;
|
||||||
|
|
||||||
int width_cache : 24;
|
int32_t width_cache;
|
||||||
bool marked : 1;
|
bool marked;
|
||||||
bool hidden : 1;
|
bool hidden;
|
||||||
int wrap_amount_cache : 24;
|
int32_t wrap_amount_cache;
|
||||||
String data;
|
String data;
|
||||||
Line() {
|
Line() {
|
||||||
width_cache = 0;
|
width_cache = 0;
|
||||||
|
|
Loading…
Reference in a new issue