1
0
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:
Alexey
2020-03-29 11:08:42 +03:00
committed by GitHub
parent e09447d011
commit a333ac1888
13 changed files with 16 additions and 18 deletions

View File

@@ -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
}