Add style checking

A lot of tests are disabled. They should be enabled successively.
This commit is contained in:
2017-07-14 00:05:13 +02:00
parent 657f4a60d5
commit e6b91f70cb
5 changed files with 89 additions and 5 deletions

View File

@ -231,8 +231,8 @@ final class IOCPLoop : Loop
return false;
}
}
if (!(oldEvents & Event.read) && (events & Event.read)
|| !(oldEvents & Event.write) && (events & Event.write))
if ((!(oldEvents & Event.read) && (events & Event.read))
|| (!(oldEvents & Event.write) && (events & Event.write)))
{
auto transport = cast(StreamTransport) watcher;
assert(transport !is null);