On Tuesday, 19 November 2013 at 18:01:19 UTC, Jeroen Bollen wrote:
If I have a function:
        @safe pure void functionName() {
                return;
        }
Where do I put the noexcept?

Did you mean nothrow?
You can put it unfortunately on both sides.
left:

@safe pure nothrow void functionName() {
    return;
}

right:
@safe pure void functionName() nothrow {
    return;
}

Reply via email to