temporary fix for another instance of issue 16528

This commit is contained in:
Cameron Ross 2018-04-24 13:51:29 -03:00
parent 205f04a67f
commit 80ee4e5f95
No known key found for this signature in database
GPG key ID: 777897D98DC91C54

View file

@ -2129,7 +2129,8 @@ struct Node
}
// 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(Node)* node;