You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
gives us a deprecation warning - Deprecation: scope variable 'this' assigned to non-scope parameter '_param_0' calling 'match'. There are two problems that I can see here:
the delegates handling references's parameters aren't marked scope
easy to fix. just add 'scope' to the delegate params
formattedWrite's parameters aren't scope
needs to be fixed in phobos?
The text was updated successfully, but these errors were encountered:
This code:
D-YAML/source/dyaml/node.d
Lines 2510 to 2522 in 9456888
gives us a deprecation warning -
Deprecation: scope variable 'this' assigned to non-scope parameter '_param_0' calling 'match'
. There are two problems that I can see here:The text was updated successfully, but these errors were encountered: