Remove deprecation attribute for the system overload of setTimer.
The approach for now is to keep overloads that receive system delegates and are also marked system in turn. This breaks safety promises in some places within the library, but is an acceptable first step that keeps other possible directions open.
This commit is contained in:
parent
f40da06385
commit
fd93ab82f5
|
@ -764,9 +764,8 @@ unittest {
|
|||
}
|
||||
|
||||
/// Compatibility overload - use a `@safe nothrow` callback instead.
|
||||
deprecated("Use an @safe nothrow callback as argument to setTimer.")
|
||||
Timer setTimer(Duration timeout, void delegate() callback, bool periodic = false)
|
||||
@safe nothrow {
|
||||
@system nothrow {
|
||||
return setTimer(timeout, () @trusted nothrow {
|
||||
try callback();
|
||||
catch (Exception e) {
|
||||
|
|
Loading…
Reference in a new issue