File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
reference/flat_map/flat_map Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ struct Point {
8888
8989int main()
9090{
91- stdx ::flat_map<std::string, Point> fm;
91+ std ::flat_map<std::string, Point> fm;
9292
9393 fm.emplace(std::piecewise_construct,
9494 std::forward_as_tuple(3, 'C'), // キーの型std::stringのコンストラクタ引数を渡す
Original file line number Diff line number Diff line change 3131
3232int main ()
3333{
34- stdx ::flat_map<int, char> fm;
34+ std ::flat_map<int, char> fm;
3535
3636 std::cout << fm.empty() << std::endl;
3737
Original file line number Diff line number Diff line change @@ -50,13 +50,13 @@ return lexicographical_compare_three_way(
5050
5151int main ()
5252{
53- stdx ::flat_map<int, char> fm1 = {
53+ std ::flat_map<int, char> fm1 = {
5454 {3, 'a'},
5555 {1, 'b'},
5656 {4, 'c'}
5757 };
5858
59- stdx ::flat_map<int, char> fm2 = {
59+ std ::flat_map<int, char> fm2 = {
6060 {3, 'a'},
6161 {1, 'b'},
6262 };
You can’t perform that action at this time.
0 commit comments