diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 5ea72070c..ef1930036 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -18461,7 +18461,7 @@ This is a simplified version of `std::copy` (ignoring the possibility of non-con template Out copy(Iter first, Iter last, Iter out) { - using tag_type = typename copy_trait>; + using tag_type = typename copy_trait>::tag; return copy_helper(first, last, out, tag_type{}) }