mirror of https://github.com/adamdruppe/arsd.git
Turn clumsy `static assert` into a `pragma(msg)`
This commit is contained in:
parent
5c2817e563
commit
033770a6c6
|
@ -442,7 +442,7 @@ in (source.length == target.length) {
|
|||
} else {
|
||||
// better error message in case it’s not implemented
|
||||
static if (!is(typeof(blendPixel!mode))) {
|
||||
static assert(false, "Missing `blendPixel!(" ~ mode.stringof ~ ")`.");
|
||||
pragma(msg, "Hint: Missing or bad `blendPixel!(" ~ mode.stringof ~ ")`.");
|
||||
}
|
||||
|
||||
foreach (immutable idx, ref pxTarget; target) {
|
||||
|
|
Loading…
Reference in New Issue