Skip to content

Commit bf9d5e1

Browse files
authored
doc: Update URL in pointers to F.16 C++ Core Guidelines (#1232)
The anchor ID in the target is now lower-case.
1 parent 756c91a commit bf9d5e1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

include/gsl/pointers

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ namespace details
5151
// Resolves to the more efficient of `const T` or `const T&`, in the context of returning a const-qualified value
5252
// of type T.
5353
//
54-
// Copied from cppfront's implementation of the CppCoreGuidelines F.16 (https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rf-in)
54+
// Copied from cppfront's implementation of the CppCoreGuidelines F.16 (https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#rf-in)
5555
template<typename T>
5656
using value_or_reference_return_t = std::conditional_t<
5757
sizeof(T) <= 2*sizeof(void*) && std::is_trivially_copy_constructible<T>::value,

0 commit comments

Comments
 (0)