Skip to content

Commit

Permalink
map::operator[ ] : オーバーロードに言語バージョンの書き忘れ
Browse files Browse the repository at this point in the history
  • Loading branch information
faithandbrave committed May 18, 2023
1 parent 1fe5eb3 commit b7b6270
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions reference/map/map/op_at.md
Expand Up @@ -5,8 +5,8 @@
* function[meta id-type]

```cpp
T& operator[](const key_type& x);
T& operator[](key_type&& x);
T& operator[](const key_type& x); // (1) C++03
T& operator[](key_type&& x); // (2) C++11
```

## 概要
Expand Down

0 comments on commit b7b6270

Please sign in to comment.