mirror of
https://github.com/MaSzyna-EU07/maszyna.git
synced 2026-07-22 15:09:19 +02:00
reformat: remove redundant parentheses
This commit is contained in:
@@ -25,9 +25,9 @@ enum class TGaugeType : int {
|
||||
toggle = 1 << 0,
|
||||
push = 1 << 1,
|
||||
delayed = 1 << 2,
|
||||
pushtoggle = ( toggle | push ),
|
||||
push_delayed = ( push | delayed ),
|
||||
pushtoggle_delayed = ( toggle | push | delayed )
|
||||
pushtoggle = toggle | push,
|
||||
push_delayed = push | delayed,
|
||||
pushtoggle_delayed = toggle | push | delayed
|
||||
};
|
||||
|
||||
// animowany wskaźnik, mogący przyjmować wiele stanów pośrednich
|
||||
|
||||
Reference in New Issue
Block a user