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 ee55964 commit 3042cd7Copy full SHA for 3042cd7
stdlib/public/runtime/Backtrace.cpp
@@ -76,7 +76,7 @@ SWIFT_RUNTIME_STDLIB_INTERNAL BacktraceSettings _swift_backtraceSettings = {
76
// enabled
77
#if TARGET_OS_OSX
78
OnOffTty::TTY,
79
-#elif 0 // defined(__linux__) || defined(_WIN32)
+#elif defined(__linux__) // || defined(_WIN32)
80
OnOffTty::On,
81
#else
82
OnOffTty::Off,
@@ -86,7 +86,7 @@ SWIFT_RUNTIME_STDLIB_INTERNAL BacktraceSettings _swift_backtraceSettings = {
86
true,
87
88
// interactive
89
-#if TARGET_OS_OSX // || defined(__linux__) || defined(_WIN32)
+#if TARGET_OS_OSX || defined(__linux__) // || defined(_WIN32)
90
91
92
0 commit comments