2021-01-01から1ヶ月間の記事一覧

Reduce GitHub actions workflow duration using brew on macOS runner

This article is based on my own experiences, and it can not be best way. So please comment and share something you find. TL;DR Skip brew update if possible Use HOMEBREW_NO_AUTO_UPDATE to skip automatically update in brew install Use HOMEBR…

constexpr function で引数を unused にする

bool を返す constexpr function 互換性の関係で引数を省略できない 実装的には、引数は使用せず常に false を返す C++11 の constexpr function なので (void)param; を置いて回避する手は使えない Doxygen に怒られるので仮引数の型だけ残して仮引数をコメ…