bugfix: fix LineEnding for windows (#6688)
fixes a bug when compiling on windows  Release Notes: - Fixed: compilation error related to `LineEnding` on Windows
This commit is contained in:
commit
c6e7cf1cbc
1 changed files with 1 additions and 1 deletions
|
@ -2634,7 +2634,7 @@ impl Default for LineEnding {
|
||||||
return Self::Unix;
|
return Self::Unix;
|
||||||
|
|
||||||
#[cfg(not(unix))]
|
#[cfg(not(unix))]
|
||||||
return Self::CRLF;
|
return Self::Windows;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue