gcc warning" 'will be initialized after'

前端 未结 7 818
走了就别回头了
走了就别回头了 2020-12-22 16:38

I am getting a lot of these warnings from 3rd party code that I cannot modify. Is there a way to disable this warning or at least disable it for certain areas (like #pragma

7条回答
  •  猫巷女王i
    2020-12-22 17:22

    If you're seeing errors from library headers and you're using GCC, then you can disable warnings by including the headers using -isystem instead of -I.

    Similar features exist in clang.

    If you're using CMake, you can specify SYSTEM for include_directories.

提交回复
热议问题