Skip to content

Commit f04b658

Browse files
committed
[Threading][Windows] Fix missing close brace.
Apparently I missed a close brace from the end of Win32.h. rdar://90776105
1 parent 90be2e3 commit f04b658

File tree

1 file changed

+3
-1
lines changed
  • include/swift/Threading/Impl

1 file changed

+3
-1
lines changed

include/swift/Threading/Impl/Win32.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,8 @@ inline void tls_set(tls_key key, void *value) {
124124
FlsSetValue(key, value);
125125
}
126126

127-
}
127+
} // namespace threading_impl
128+
129+
} // namespace swift
128130

129131
#endif // SWIFT_THREADING_IMPL_WIN32_H

0 commit comments

Comments
 (0)