We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7afc498 commit 1284ccdCopy full SHA for 1284ccd
CPP17.md
@@ -383,7 +383,7 @@ struct container {
383
};
384
385
// deduction guide
386
-template <template Iter>
+template <typename Iter>
387
container(Iter b, Iter e) -> container<typename std::iterator_traits<Iter>::value_type>;
388
389
container a{ 7 }; // OK: deduces container<int>
README.md
@@ -1047,7 +1047,7 @@ struct container {
1047
1048
1049
1050
1051
1052
1053
0 commit comments