소스 검색

Suppressing some clang warnings for deprecated methods.

August Mueller 13 년 전
부모
커밋
ceef9e7744
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      src/FMResultSet.m

+ 4 - 0
src/FMResultSet.m

@@ -95,6 +95,9 @@ - (void)kvcMagic:(id)object {
     }
 }
 
+#pragma clang diagnostic push
+#pragma clang diagnostic ignored "-Wdeprecated-implementations"
+
 - (NSDictionary*)resultDict {
     
     int num_cols = sqlite3_data_count([_statement statement]);
@@ -122,6 +125,7 @@ - (NSDictionary*)resultDict {
     return nil;
 }
 
+#pragma clang diagnostic pop
 
 - (NSDictionary*)resultDictionary {