We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81841dc commit 5b31f9bCopy full SHA for 5b31f9b
library/std/src/sys/windows/os.rs
@@ -319,7 +319,7 @@ pub fn temp_dir() -> PathBuf {
319
super::fill_utf16_buf(|buf, sz| unsafe { c::GetTempPath2W(sz, buf) }, super::os2path).unwrap()
320
}
321
322
-#[cfg(and(not(target_vendor = "uwp"), not(target_vendor = "win7")))]
+#[cfg(all(not(target_vendor = "uwp"), not(target_vendor = "win7")))]
323
fn home_dir_crt() -> Option<PathBuf> {
324
unsafe {
325
// Defined in processthreadsapi.h.
0 commit comments