From e6b91f70cb478ff17778dab00c2115a4d8e90cb8 Mon Sep 17 00:00:00 2001 From: Eugen Wissner Date: Fri, 14 Jul 2017 00:05:13 +0200 Subject: Add style checking A lot of tests are disabled. They should be enabled successively. --- source/tanya/async/event/iocp.d | 4 ++-- source/tanya/container/list.d | 4 ++-- source/tanya/format/conv.d | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) (limited to 'source') diff --git a/source/tanya/async/event/iocp.d b/source/tanya/async/event/iocp.d index 97f5459..eaf647b 100644 --- a/source/tanya/async/event/iocp.d +++ b/source/tanya/async/event/iocp.d @@ -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); diff --git a/source/tanya/container/list.d b/source/tanya/container/list.d index 4800a76..c917b67 100644 --- a/source/tanya/container/list.d +++ b/source/tanya/container/list.d @@ -1312,8 +1312,8 @@ struct DList(T) private size_t makeList(R)(ref R el, out Entry* head, out Entry* tail) @trusted out (retLength) { - assert(retLength == 0 && head is null && tail is null - || retLength > 0 && head !is null && tail !is null); + assert((retLength == 0 && head is null && tail is null) + || (retLength > 0 && head !is null && tail !is null)); } body { diff --git a/source/tanya/format/conv.d b/source/tanya/format/conv.d index d069e38..fc33355 100644 --- a/source/tanya/format/conv.d +++ b/source/tanya/format/conv.d @@ -61,7 +61,7 @@ template to(To) /// Ditto. To to(From)(From from) - if (is(Unqual!To == Unqual!From) || isNumeric!From && isFloatingPoint!To) + if (is(Unqual!To == Unqual!From) || (isNumeric!From && isFloatingPoint!To)) { return from; } -- cgit v1.2.3