Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Remove extra semicolons
  • Loading branch information
Raclamusi committed Aug 30, 2023
commit 3e0c187ed1ea8f8b23bd40bfc5f2730aab52eefc
4 changes: 2 additions & 2 deletions docs/standardization/cppx.md
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ inspect constexpr_opt (init-statement_opt condition) trailing-return-type_opt
<int> i => { std::cout << "int: " << i << '\n'; }
<float> f => { std::cout << "float: " << f << '\n'; }
};
};
}
```

### Polymorphic Types のマッチング
Expand Down Expand Up @@ -258,7 +258,7 @@ inspect constexpr_opt (init-statement_opt condition) trailing-return-type_opt
<Circle> [r] => std::numbers::pi * r * r;
<Rectangle> [w, h] => w * h;
};
};
}
```


Expand Down