diff --git a/include/gsl/pointers b/include/gsl/pointers index 282229fe..d73dc05d 100644 --- a/include/gsl/pointers +++ b/include/gsl/pointers @@ -51,7 +51,7 @@ namespace details // Resolves to the more efficient of `const T` or `const T&`, in the context of returning a const-qualified value // of type T. // - // Copied from cppfront's implementation of the CppCoreGuidelines F.16 (https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rf-in) + // Copied from cppfront's implementation of the CppCoreGuidelines F.16 (https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#rf-in) template using value_or_reference_return_t = std::conditional_t< sizeof(T) <= 2*sizeof(void*) && std::is_trivially_copy_constructible::value,