warning: Value stored to ‘x’ is never read 警告:’x’に格納された値が読み出されない[clang-analyzer-deadco… 続きを読む 【C言語】
デッドコード (冗長コード)
return x++;
カテゴリー: clang-tidy
【C言語】
【C言語】
sizeof演算子のよくある間違い
warning: suspicious usage of ‘sizeof(sizeof(…))’ 警告:’sizeof(sizeof(…))’ の疑わしい使用法。[misc… 続きを読む 【C言語】
sizeof演算子のよくある間違い
【C言語】
不要なelseを削除しよう!
(No-else-return)
warning: do not use ‘else’ after ‘return’ 警告:return直後のelseは要らない[readability-else-after… 続きを読む 【C言語】
不要なelseを削除しよう!
(No-else-return)
【C言語】
do-while(0)を避ける理由
warning: redundant continue statement at the end of loop statement 警告:ループ文の末尾にある冗長なcontinue文[readability-redun… 続きを読む 【C言語】
do-while(0)を避ける理由