mirror of https://github.com/adamdruppe/arsd.git
fix occasional "`void` does not have a default initializer" error in mvd
This commit is contained in:
parent
8ccbe52704
commit
5ce924e272
27
mvd.d
27
mvd.d
|
@ -29,7 +29,15 @@ module arsd.mvd;
|
||||||
import std.traits;
|
import std.traits;
|
||||||
|
|
||||||
/// This exists just to make the documentation of [mvd] nicer looking.
|
/// This exists just to make the documentation of [mvd] nicer looking.
|
||||||
alias CommonReturnOfOverloads(alias fn) = CommonType!(staticMap!(ReturnType, __traits(getOverloads, __traits(parent, fn), __traits(identifier, fn))));
|
template CommonReturnOfOverloads(alias fn) {
|
||||||
|
alias overloads = __traits(getOverloads, __traits(parent, fn), __traits(identifier, fn));
|
||||||
|
static if (overloads.length == 1) {
|
||||||
|
alias CommonReturnOfOverloads = ReturnType!(overloads[0]);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
alias CommonReturnOfOverloads = CommonType!(staticMap!(ReturnType, overloads));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// See details on the [arsd.mvd] page.
|
/// See details on the [arsd.mvd] page.
|
||||||
CommonReturnOfOverloads!fn mvd(alias fn, T...)(T args) {
|
CommonReturnOfOverloads!fn mvd(alias fn, T...)(T args) {
|
||||||
|
@ -149,3 +157,20 @@ unittest {
|
||||||
|
|
||||||
//mvd!bar(new OtherClass);
|
//mvd!bar(new OtherClass);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
unittest {
|
||||||
|
class MyClass {}
|
||||||
|
|
||||||
|
static bool success = false;
|
||||||
|
|
||||||
|
static struct Wrapper {
|
||||||
|
static:
|
||||||
|
void foo(MyClass a) { success = true; }
|
||||||
|
}
|
||||||
|
|
||||||
|
with(Wrapper) {
|
||||||
|
mvd!foo(new MyClass);
|
||||||
|
assert(success);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue