小さい頃はエラ呼吸

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


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

【cppcheck】error: Undefined behavior: Variable 'xxx' is used as parameter and destination in s[n]printf().

C++

はじめに C++の静的解析ツール「cppcheck」でソースコードを静的解析した場合に、以下の警告がでることがあります。 error: Undefined behavior: Variable 'xxx' is used as parameter and destination in s[n]printf(). cppcheckのバージョン v1.66 サンプ…

(warning) The 2nd memset() argument '8224' doesn't fit into an 'unsigned char'.

C++

はじめに C++の静的解析ツール「cppcheck」でソースコードを静的解析した場合に、以下の警告がでることがあります。 (warning) The 2nd memset() argument '8224' doesn't fit into an 'unsigned char'. cppcheckのバージョン v1.66 サンプルプログラム 以下…

【C++】構造体のサイズとバイトアライメント

C++

はじめに 構造体のサイズとアライメントについて過去にハマッたことがあったので、まとめてみました。 構造体のサイズ 次のような構造体があった場合、ST_TESTのbyte数は1+4+1の6byteと思いきや、Windows 32bitの場合12byteになります。 これはメモリ上にメ…