Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
davbeck committed Jul 8, 2024
1 parent 3331acb commit 2a1fb9c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tests/GlobTests/Pattern+fnmatchTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ private let PERIOD = FNM_PERIOD
private let NOESCAPE = FNM_NOESCAPE
private let NOMATCH = FNM_NOMATCH
#if os(macOS) || os(iOS) || os(watchOS) || os(tvOS)
private let LEADING_DIR = FNM_LEADING_DIR
private let LEADING_DIR = FNM_LEADING_DIR
#else
private let LEADING_DIR = (1 as Int32) << 29
private let LEADING_DIR = (1 as Int32) << 29
#endif
private let EXTMATCH = (1 as Int32) << 30 // FNM_EXTMATCH

Expand Down

0 comments on commit 2a1fb9c

Please sign in to comment.