From 21aaaadae4d26ab51aae05d549ca77de6e80b57e Mon Sep 17 00:00:00 2001 From: banxi Date: Tue, 2 Feb 2016 15:25:51 +0800 Subject: [PATCH] Fix no Foundation import error withouth import Foundation sometimes will cause Compile Error --- SQLite/Foundation.swift | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/SQLite/Foundation.swift b/SQLite/Foundation.swift index ef39d3bf..52b2ea02 100644 --- a/SQLite/Foundation.swift +++ b/SQLite/Foundation.swift @@ -22,6 +22,8 @@ // THE SOFTWARE. // +import Foundation + extension NSData : Value { public class var declaredDatatype: String { @@ -101,4 +103,4 @@ extension Row { return get(column) } -} \ No newline at end of file +}