gpt4 book ai didi

gcc - 当 -pedantic 打开时,在 GCC 中抑制 "extra ' ;'"错误

转载 作者:行者123 更新时间:2023-12-04 14:20:16 27 4
gpt4 key购买 nike

我正在使用 -pedantic 构建我的程序标志,这会导致 extra ';'错误(因为第三方 header 不一致地使用了一些宏;当 -pedantic 关闭时不会显示错误)。我真的不想转-pedantic关闭,我也不想编辑标题。有没有办法抑制这个确切的错误?像-Wno-annoying-semicolon-error编译器开关什么的?

最佳答案

您可以像这样抑制外部标题的迂腐警告:

//save compiler switches
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wpedantic"

//Bad headers with problem goes here
#include <ros/ros.h>
#include <sensor_msgs/LaserScan.h>

//restore compiler switches
#pragma GCC diagnostic pop

关于gcc - 当 -pedantic 打开时,在 GCC 中抑制 "extra ' ;'"错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2675692/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com