Skip to content

Commit

Permalink
std::fs::path: remove unused mutability for Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
mertcandav committed Sep 26, 2024
1 parent 936b406 commit f61a5df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion std/fs/path/path_windows.jule
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ fn abs(mut path: str): (str, ok: bool) {
ret Clean(path), true
}

fn join(mut elem: ...str): str {
fn join(elem: ...str): str {
mut s := StrBuilder.New(1 << 4)
mut lastChar := byte(0)
for (_, mut e) in elem {
Expand Down

0 comments on commit f61a5df

Please sign in to comment.