Skip to content

Commit

Permalink
Merge pull request #1208 from ROCKTAKEY/use-source-code-block-to-list…
Browse files Browse the repository at this point in the history
…-style

working_style: 型修飾のスタイルの一覧を等幅フォントで表示するよう修正
  • Loading branch information
faithandbrave committed Oct 30, 2023
2 parents de4b233 + 2c7cf5e commit 0f8fbde
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions working_style.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,14 @@

型修飾のスタイル:

- A) const T &v
- B) const T& v
- C) const T & v
- D) T const &v
- E) T const& v
- F) T const & v
```cpp
/* (A) */ const T &v
/* (B) */ const T& v
/* (C) */ const T & v
/* (D) */ T const &v
/* (E) */ T const& v
/* (F) */ T const & v
```

本サイトでは、Bのスタイルで型修飾を行います。

Expand Down

0 comments on commit 0f8fbde

Please sign in to comment.