Skip to content

Commit

Permalink
working_style: 型修飾のスタイルの一覧を等幅フォントで表示するよう修正
Browse files Browse the repository at this point in the history
元の実装ではプロポーショナルフォントで表示されるが、
スペースの有無などが見にくいため、等幅フォントで表示できる
コードブロックに記述するよう修正した。
  • Loading branch information
ROCKTAKEY committed Oct 27, 2023
1 parent 51307b0 commit 2c7cf5e
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions working_style.md
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 2c7cf5e

Please sign in to comment.