mirror of
https://github.com/dlang/phobos.git
synced 2025-04-29 06:30:28 +03:00

In addition make the ctors (which were @trusted) and tests @safe, but that is not an API change, so it is not in the changelog.
4 lines
190 B
Text
4 lines
190 B
Text
ErrnoException.errno is now nothrow pure @nogc @safe
|
|
|
|
Before, it was just @system. As it turns out, all it does is return the value
|
|
of an integer field, so it can have all these attributes.
|