diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index c1184c5..80938b0 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -17528,7 +17528,19 @@ Because that's the best we can do without direct concept support. ##### Example - enable_if + template + enable_if_t> + f(T v) + { + // ... + } + + // Equivalent to: + template + void f(T v) + { + // ... + } ##### Note