Skip to content

Commit

Permalink
allow format to throw
Browse files Browse the repository at this point in the history
  • Loading branch information
LunaTheFoxgirl committed Oct 7, 2024
1 parent 55ce05c commit 633ed6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/numem/format.d
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ nstring cformat(Args...)(const(char)* fmt, Args args) @nogc nothrow {
Provides C# style formatting.
*/
@trusted
nstring format(Args...)(nstring fmt, Args args) @nogc nothrow {
nstring format(Args...)(nstring fmt, Args args) @nogc {
vector!nstring formatted = vector!nstring(args.length);

static foreach(i; 0..args.length) {
Expand Down

0 comments on commit 633ed6a

Please sign in to comment.