Remove return after unreachable

This commit is contained in:
gingerBill
2020-06-06 15:22:22 +01:00
parent 59a0bbb385
commit a89633e3ed
2 changed files with 0 additions and 2 deletions

View File

@@ -416,7 +416,6 @@ get_current_directory :: proc() -> string {
resize(&buf, len(buf)+page_size);
}
unreachable();
return "";
}
set_current_directory :: proc(path: string) -> (err: Errno) {

View File

@@ -448,7 +448,6 @@ get_current_directory :: proc() -> string {
resize(&buf, len(buf)+page_size);
}
unreachable();
return "";
}
set_current_directory :: proc(path: string) -> (err: Errno) {