We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c37a052 commit e62d6d8Copy full SHA for e62d6d8
src/platform/windows/mod.rs
@@ -35,11 +35,13 @@ lazy_static! {
35
}
36
37
/// Debug macro to better track what's going on in case of errors.
38
-macro_rules! win32_trace { ($($rest:tt)*) => {
39
- if cfg!(feature = "win32-trace") {
40
- if *DEBUG_TRACE_ENABLED { println!($($rest)*); }
+macro_rules! win32_trace {
+ ($($rest:tt)*) => {
+ if cfg!(feature = "win32-trace") {
41
+ if *DEBUG_TRACE_ENABLED { println!($($rest)*); }
42
+ }
43
-} }
44
+}
45
46
/// When we create the pipe, how big of a write buffer do we specify?
47
///
0 commit comments