3 GCC Command Options
3.8 Options to Request or Suppress Warnings
NOTE: 用法总结:
-w
小写w
表示关闭warning (原文使用的是inhibit)
-W
大写W
表示开启
-Wfatal-errors
NOTE: 比较有用
pedantic
NOTE: pedantic的意思是"学究式的"
-Wpedantic
-pedantic
-pedantic-errors
-Wall
NOTE: 开启所有的warning
TODO
stackoverflow How to remove GCC warning on #pragma region?