博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
#pragma 处理警告 clang diagnostic 的使用
阅读量:5268 次
发布时间:2019-06-14

本文共 1343 字,大约阅读时间需要 4 分钟。

首先#pragma在本质上是声明,常用的功能就是注释,尤其是给Code分段注释;而且它还有另一个强大的功能是处理编译器警告,但却没有上一个功能用的那么多。

clang diagnostic 是#pragma 第一个常用命令:

#pragma clang diagnostic push

#pragma clang diagnostic ignored "-相关命令"

    // 你自己的代码

#pragma clang diagnostic pop

常见的用法

1. 方法弃用告警

1
2
3
4
#pragma clang diagnostic push   
#pragma clang diagnostic ignored 
"-Wincompatible-pointer-types"  
   
//  
#pragma clang diagnostic pop

2. 不兼容指针类型

1
2
3
4
#pragma clang diagnostic push   
#pragma clang diagnostic ignored 
"-Wincompatible-pointer-types"  
   
//  
#pragma clang diagnostic pop

3. 循环引用

1
2
3
4
5
6
7
// completionBlock is manually nilled out in AFURLConnectionOperation to break the retain cycle.  
#pragma clang diagnostic push  
#pragma clang diagnostic ignored 
"-Warc-retain-cycles" 
    
self.completionBlock = ^ {  
        
...  
    
};  
#pragma clang diagnostic pop

4. 未使用变量

1
2
3
4
#pragma clang diagnostic push   
#pragma clang diagnostic ignored 
"-Wunused-variable"  
    
int 
a;   
#pragma clang diagnostic pop

5. 未使用default

1
2
3
4
5
6
7
8
9
10
11
12
#pragma clang diagnostic push
#pragma clang diagnostic ignored 
"-Wcovered-switch-default"
//    switch (style) {
//        case UITableViewCellStyleDefault:
//        case UITableViewCellStyleValue1:
//        case UITableViewCellStyleValue2:
//        case UITableViewCellStyleSubtitle:
//            // ...
//        default:
//            return;
//    }
#pragma clang diagnostic pop

参考链接:

转载于:https://www.cnblogs.com/oc-bowen/p/7714841.html

你可能感兴趣的文章
如何设置映射网络驱动器的具体步骤和方法
查看>>
centos下同时启动多个tomcat
查看>>
slab分配器
查看>>
【读书笔记】C#高级编程 第三章 对象和类型
查看>>
【SVM】libsvm-python
查看>>
Jmeter接口压力测试,Java.net.BindException: Address already in use: connect
查看>>
Leetcode Balanced Binary Tree
查看>>
go:channel(未完)
查看>>
[JS]递归对象或数组
查看>>
多线程《三》进程与线程的区别
查看>>
linux sed命令
查看>>
html标签的嵌套规则
查看>>
[Source] Machine Learning Gathering/Surveys
查看>>
HTML <select> 标签
查看>>
tju 1782. The jackpot
查看>>
湖南多校对抗赛(2015.03.28) H SG Value
查看>>
hdu1255扫描线计算覆盖两次面积
查看>>
hdu1565 用搜索代替枚举找可能状态或者轮廓线解(较优),参考poj2411
查看>>
bzoj3224 splay板子
查看>>
程序存储问题
查看>>