diff --git a/Sources/Lighter/Schema/SQLiteValueType.swift b/Sources/Lighter/Schema/SQLiteValueType.swift index daecf82..a193952 100644 --- a/Sources/Lighter/Schema/SQLiteValueType.swift +++ b/Sources/Lighter/Schema/SQLiteValueType.swift @@ -699,13 +699,6 @@ extension URL { } } -#if compiler(<6) // Unavailable due to a swiftc crasher in 16b6 - //SILFunction type mismatch for 'NSDecimalString': - // '$@convention(c) (UnsafePointer, Optional) - // -> @autoreleased Optional' - // != - // '$@convention(c) (UnsafePointer, Optional) - // -> @autoreleased NSString' extension Decimal : SQLiteValueType { public struct SQLCouldNotParseDecimal: Swift.Error, Sendable { @@ -759,7 +752,6 @@ extension Decimal : SQLiteValueType { .bind(unsafeSQLite3StatementHandle: stmt, index: index, then: execute) } } -#endif // compiler(<6) // Unavailable due to a swiftc crasher in 16b6 extension UUID : SQLiteValueType { @@ -855,5 +847,4 @@ extension UUID : SQLiteValueType { } } } - #endif // canImport(Foundation)