Remove all trailing whitespace
sed 's/[ \t]*$//' -i **/*.d
This commit is contained in:
parent
3faa5f3bdc
commit
8f89733a86
16 changed files with 114 additions and 114 deletions
|
@ -61,7 +61,7 @@ struct Waitable(CB, alias wait, alias cancel, on_result...)
|
|||
|
||||
bool cancelled;
|
||||
auto waitCallback(Callback cb) nothrow { return wait(cb); }
|
||||
|
||||
|
||||
static if (is(ReturnType!waitCallback == void))
|
||||
void cancelCallback(Callback cb) nothrow { cancel(cb); }
|
||||
else
|
||||
|
|
|
@ -163,7 +163,7 @@ struct InterfaceProxy(I) if (is(I == interface)) {
|
|||
}
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
||||
mixin(impl());
|
||||
}
|
||||
|
||||
|
|
|
@ -440,7 +440,7 @@ template checkInterfaceConformance(T, I) {
|
|||
}
|
||||
alias checkMemberConformance = impl!0;
|
||||
}
|
||||
|
||||
|
||||
template impl(size_t i) {
|
||||
static if (i < Members.length) {
|
||||
static if (__traits(compiles, __traits(getMember, I, Members[i])))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue