小さい頃はエラ呼吸

いつのまにやら肺で呼吸をしています。


2014-11-05から1日間の記事一覧

【cppcheck】warning: Opposite conditions in nested 'if' blocks lead to a dead code block.

c++

はじめに C++の静的解析ツール「cppcheck」でソースコードを静的解析した場合に、以下の警告がでることがあります。 warning: Opposite conditions in nested 'if' blocks lead to a dead code block. cppcheckのバージョン v1.67 サンプルプログラム 以下の…

【cppcheck】warning: Redundant assignment of 'xxx' to itself.

c++

はじめに C++の静的解析ツール「cppcheck」でソースコードを静的解析した場合に、以下の警告がでることがあります。 warning: Redundant assignment of 'xxx' to itself. cppcheckのバージョン v1.67 サンプルプログラム 以下のソースプログラムを解析にかけ…