From 3f70be9721a44f9768b25d8d1ab8c9d0ca5065a8 Mon Sep 17 00:00:00 2001 From: johansin <56294841+johansin@users.noreply.github.com> Date: Tue, 8 Oct 2019 23:28:55 +0200 Subject: [PATCH] T.25: Fix number in exponential sequence. (#1526) Otherwise rather suggests a quadratic growth. --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 29e9435..25e8a3d 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -17184,7 +17184,7 @@ Complementary constraints are unfortunately common in `enable_if` code: ##### Note Complementary requirements on one requirements is sometimes (wrongly) considered manageable. -However, for two or more requirements the number of definitions needs can go up exponentially (2,4,9,16,...): +However, for two or more requirements the number of definitions needs can go up exponentially (2,4,8,16,...): C1 && C2 !C1 && C2