Skip to content

Commit

Permalink
Remove unneeded debug stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
LunaTheFoxgirl committed Dec 15, 2024
1 parent 78142c5 commit ebaa127
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion source/numem/io/stdio.d
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ void nuWrite(nstring str) {
import core.stdc.stdio : putchar;
foreach(i; 0..str.length)
putchar(str[i]);
putchar('\0');
}

/**
Expand Down
3 changes: 0 additions & 3 deletions source/numem/string.d
Original file line number Diff line number Diff line change
Expand Up @@ -581,9 +581,6 @@ unittest {
vector!nstring copy = strings;
nogc_delete(copy);

import numem.io.stdio : writeln;
writeln(strings[0], " ", strings[1]);

assert(strings[0] == "a");
assert(strings[1] == "b");

Expand Down

0 comments on commit ebaa127

Please sign in to comment.