Avoid 31-bit left shift of 32-bit signed values
This commit is contained in:
parent
628e7af79e
commit
1a90833839
2 changed files with 6 additions and 6 deletions
|
|
@ -368,7 +368,7 @@ public:
|
|||
buttonCustom3 = 1 << 28,
|
||||
|
||||
savedHiddenState = 1 << 30, // used internally
|
||||
actionPane = 1 << 31 // used internally
|
||||
actionPane = 1u << 31 // used internally
|
||||
};
|
||||
|
||||
public:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue