diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 50aa89f..49a1013 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