C++的C4305和C4800的编译警告
Contents
今天在改代码时发现了这两个warning,C4305 - ‘identifier’ : truncation from ‘type1’ to ‘type2’ 和C4800 - ‘type’ : forcing value to bool ‘true’ or ‘false’ (performance warning)。
大家看看下面的代码吧,一目了然。:)
1 | int a1 = 1; |