From f071920d7f9189909a59343aebe34e2db583a519 Mon Sep 17 00:00:00 2001 From: Alex Campos Date: Fri, 10 May 2019 14:43:13 -0700 Subject: [PATCH] Use better syntax for concept constraint --- CppCoreGuidelines.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 04b6058..fe7f596 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -17536,8 +17536,7 @@ Because that's the best we can do without direct concept support. } // Equivalent to: - template - void f(T v) + void f(Integral v) { // ... }