From 01e152a0672f3934867b86017c290e1f0a62e24a Mon Sep 17 00:00:00 2001 From: Victor Kononov Date: Mon, 6 Aug 2018 17:09:57 +0300 Subject: [PATCH] non_framewrok_fix: fixed a mistype that prevented building SQLite.swift as non-framework sources. --- Sources/SQLite/Typed/Coding.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/SQLite/Typed/Coding.swift b/Sources/SQLite/Typed/Coding.swift index 7c70db33..c3fb931b 100644 --- a/Sources/SQLite/Typed/Coding.swift +++ b/Sources/SQLite/Typed/Coding.swift @@ -184,7 +184,7 @@ fileprivate class SQLiteEncoder: Encoder { } } - fileprivate var setters: [SQLite.Setter] = [] + fileprivate var setters: [Setter] = [] let codingPath: [CodingKey] = [] let userInfo: [CodingUserInfoKey: Any]