mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
all: remove redundant parentheses in if statements
This commit is contained in:
@@ -237,7 +237,7 @@ fn (cb mut Clipboard) start_listener(){
|
||||
mut to_be_requested := Atom(0)
|
||||
for {
|
||||
XNextEvent(cb.display, &event)
|
||||
if (event.@type == 0) {
|
||||
if event.@type == 0 {
|
||||
println("error")
|
||||
continue
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user