diff --git a/Sources/SwiftDocC/Model/Rendering/RenderContext.swift b/Sources/SwiftDocC/Model/Rendering/RenderContext.swift index dab96eb84d..f810cc27bd 100644 --- a/Sources/SwiftDocC/Model/Rendering/RenderContext.swift +++ b/Sources/SwiftDocC/Model/Rendering/RenderContext.swift @@ -61,8 +61,8 @@ public struct RenderContext { ) } - #if os(macOS) || os(iOS) || os(Android) - // Concurrently render content on macOS/iOS & Android + #if os(macOS) || os(iOS) || os(Android) || os(Windows) + // Concurrently render content on macOS/iOS, Windows & Android let results: [(reference: ResolvedTopicReference, content: RenderReferenceStore.TopicContent)] = references.concurrentPerform { reference, results in results.append((reference, renderContentFor(reference))) }