Fix compile error on DMD 2.068.2.

This commit is contained in:
Sönke Ludwig 2017-06-12 21:06:55 +02:00
parent 67a0463fa0
commit a7c77bba94
No known key found for this signature in database
GPG key ID: D95E8DB493EE314C

View file

@ -638,6 +638,7 @@ auto apply(alias handler, TA)(TA ta)
return handler(get!(TA.FieldTypes[i])(ta));
}
}
static if (__VERSION__ <= 2068) assert(false);
}
/// ditto
auto apply(alias handler, T)(T value)