Browse Source

[PR #1603] Added Foundation import to DispatchQueue extension.

Without this, Alamofire was failing to compile when used as a submodule.
CodeEagle 9 years ago
parent
commit
6f94df2e0f
1 changed files with 1 additions and 0 deletions
  1. 1 0
      Source/DispatchQueue+Alamofire.swift

+ 1 - 0
Source/DispatchQueue+Alamofire.swift

@@ -23,6 +23,7 @@
 //
 
 import Dispatch
+import Foundation
 
 extension DispatchQueue {
     static var userInteractive: DispatchQueue { return DispatchQueue.global(qos: .userInteractive) }