File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -50,15 +50,15 @@ int main()
5050 decltype (um)::key_equal eq{ um.key_eq() };
5151
5252 std::cout << "eq(\" 1st\" , \" 2nd\" ) = " << eq("1st", "2nd") << std::endl;
53- std::cout << "eq(\" 1st\" , \" 2nd \" ) = " << eq("1st", "1st") << std::endl;
53+ std::cout << "eq(\" 1st\" , \" 1st \" ) = " << eq("1st", "1st") << std::endl;
5454}
5555```
5656* key_eq()[ color ff0000]
5757
5858### 出力
5959```
6060eq("1st", "2nd") = false
61- eq("1st", "2nd ") = true
61+ eq("1st", "1st ") = true
6262```
6363
6464## バージョン
Original file line number Diff line number Diff line change @@ -50,15 +50,15 @@ int main()
5050 decltype (um)::key_equal eq{ um.key_eq() };
5151
5252 std::cout << "eq(\" 1st\" , \" 2nd\" ) = " << eq("1st", "2nd") << std::endl;
53- std::cout << "eq(\" 1st\" , \" 2nd \" ) = " << eq("1st", "1st") << std::endl;
53+ std::cout << "eq(\" 1st\" , \" 1st \" ) = " << eq("1st", "1st") << std::endl;
5454}
5555```
5656* key_eq()[ color ff0000]
5757
5858### 出力
5959```
6060eq("1st", "2nd") = false
61- eq("1st", "2nd ") = true
61+ eq("1st", "1st ") = true
6262```
6363
6464## バージョン
You can’t perform that action at this time.
0 commit comments