Merge pull request #973 from michael-r-may/master
Fix for -Werror switch use
This commit is contained in:
commit
c5e51b31c1
1 changed files with 3 additions and 3 deletions
|
|
@ -81,14 +81,14 @@ typedef enum {
|
||||||
AFNetworkReachabilityStatusReachableViaWiFi = 2,
|
AFNetworkReachabilityStatusReachableViaWiFi = 2,
|
||||||
} AFNetworkReachabilityStatus;
|
} AFNetworkReachabilityStatus;
|
||||||
#else
|
#else
|
||||||
#warning SystemConfiguration framework not found in project, or not included in precompiled header. Network reachability functionality will not be available.
|
#pragma message("SystemConfiguration framework not found in project, or not included in precompiled header. Network reachability functionality will not be available.")
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef __UTTYPE__
|
#ifndef __UTTYPE__
|
||||||
#if __IPHONE_OS_VERSION_MIN_REQUIRED
|
#if __IPHONE_OS_VERSION_MIN_REQUIRED
|
||||||
#warning MobileCoreServices framework not found in project, or not included in precompiled header. Automatic MIME type detection when uploading files in multipart requests will not be available.
|
#pragma message("MobileCoreServices framework not found in project, or not included in precompiled header. Automatic MIME type detection when uploading files in multipart requests will not be available.")
|
||||||
#else
|
#else
|
||||||
#warning CoreServices framework not found in project, or not included in precompiled header. Automatic MIME type detection when uploading files in multipart requests will not be available.
|
#pragma message("CoreServices framework not found in project, or not included in precompiled header. Automatic MIME type detection when uploading files in multipart requests will not be available.")
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue