Skip to content

Instantly share code, notes, and snippets.

@loliGothicK
Created April 12, 2018 18:17
Show Gist options
  • Save loliGothicK/98aeaefb71d006fc3a09902fd7ed0e3c to your computer and use it in GitHub Desktop.
Save loliGothicK/98aeaefb71d006fc3a09902fd7ed0e3c to your computer and use it in GitHub Desktop.
int main(){
// ラムダ式にconstexprをつけることができる
auto f1 = []() constexpr {};
// OK
auto f2 = []() mutable constexpr {};
// これもOK
auto f3 = []() constexpr mutable {};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment