Skip to content

Commit

Permalink
Utility: disable DirectoryMonitor on Windows temporarily (#606)
Browse files Browse the repository at this point in the history
This temporarily disables the functionality on Windows to match the
Linux port.  We should be able to reimplement this functionality as
already done in clang and swift-tools-support-core on Windows.
  • Loading branch information
compnerd authored Jun 1, 2023
1 parent fee9031 commit 74520d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/SwiftDocCUtilities/Utility/DirectoryMonitor.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import Foundation
import SwiftDocC

#if !os(Linux) && !os(Android)
#if !os(Linux) && !os(Android) && !os(Windows)
import Darwin

/// A throttle object to filter events that come too fast.
Expand Down

0 comments on commit 74520d0

Please sign in to comment.