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.
2 parents e003e5e + a10c9c5 commit 67004c8Copy full SHA for 67004c8
stdlib/public/core/Print.swift
@@ -28,11 +28,6 @@ public func print(
28
separator: String = " ",
29
terminator: String = "\n"
30
) {
31
-#if os(Windows)
32
- // FIXME: This fix is for 'crash at hook(output.left)' in cygwin.
33
- // Proper fix is needed. see: https://bugs.swift.org/browse/SR-612
34
- let _playgroundPrintHook: ((String) -> Void)? = nil
35
-#endif
36
if let hook = _playgroundPrintHook {
37
var output = _TeeStream(left: "", right: _Stdout())
38
_print(
0 commit comments