Skip to content

Commit 3d7aea4

Browse files
Use utility header for make_pair.
1 parent 42c27aa commit 3d7aea4

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
A recursive map that can have any shape and can hold multiple types for keys and values.
88

99
* Header-only library.
10-
* Key types are provided at construct time as template arguments. They must meet the type conditions for [std::variant](https://en.cppreference.com/w/cpp/utility/variant).
10+
* Key types are provided at construct time as template arguments. They must meet the type conditions
11+
for [std::variant](https://en.cppreference.com/w/cpp/utility/variant).
1112
* Value types must be copy constructible as the map takes ownership on the objects assigned.
1213
* Can be visualised as a tree.
1314

@@ -22,7 +23,7 @@ A recursive map that can have any shape and can hold multiple types for keys and
2223
#include <cassert>
2324
#include <iostream>
2425
#include <string>
25-
#include <tuple>
26+
#include <utility>
2627

2728
#include "msd/poly_map.hpp"
2829

0 commit comments

Comments
 (0)