GCC 调试/g++/其他
外观
- 使用 GCC 4.4.3 生成?
- 也可能产生“段错误”错误
- 可能导致程序执行在真正错误的代码区域之前中断
- 检查不匹配的函数声明和定义
- 检查函数定义中缺少或无效的返回类型
// function declaration below has no return type in its' definition
foo checkfoo();
// instead it should be
void checkfoo();
// function declaration below has no return type in its' definition
foo checkfoo();
// instead it should be
void checkfoo();