Merge pull request #120 from Herringway/fix-inferrence
temporary fix for another instance of issue 16528 merged-on-behalf-of: BBasile <BBasile@users.noreply.github.com>
This commit is contained in:
commit
fbca742f86
|
@ -2129,7 +2129,8 @@ struct Node
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get index of pair with key (or value, if key is false) matching index.
|
// Get index of pair with key (or value, if key is false) matching index.
|
||||||
sizediff_t findPair(T, Flag!"key" key = Yes.key)(const ref T index) const
|
// Cannot be inferred @safe due to https://issues.dlang.org/show_bug.cgi?id=16528
|
||||||
|
sizediff_t findPair(T, Flag!"key" key = Yes.key)(const ref T index) const @safe
|
||||||
{
|
{
|
||||||
const pairs = getValue!(Pair[])();
|
const pairs = getValue!(Pair[])();
|
||||||
const(Node)* node;
|
const(Node)* node;
|
||||||
|
|
Loading…
Reference in a new issue