Skip to content

Instantly share code, notes, and snippets.

@loliGothicK
Created April 12, 2018 18:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save loliGothicK/bc44b49aec5381fe38d9d64ccab284e7 to your computer and use it in GitHub Desktop.
Save loliGothicK/bc44b49aec5381fe38d9d64ccab284e7 to your computer and use it in GitHub Desktop.
int main(){
constexpr int add_one(int n){
// nがコンパイル時定数ならラムダ式をconstexprの文脈で使える
return [n]{ return n + 1; }();
}
static_assert( add_one(1) == 2 );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment