From eeb25a859a205a492f5b1af2ea97428588dc7a08 Mon Sep 17 00:00:00 2001 From: Aleksei Safronov Date: Mon, 21 Sep 2015 20:24:16 +0300 Subject: [PATCH] Fix typo in T.123 --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 9c6af41..c4af160 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -10061,7 +10061,7 @@ Often a `constexpr` function implies less compile-time overhead than alternative return res; } - constexpr auto f7 = fac(pi,7); + constexpr auto f7 = pow(pi,7); **Enforcement**: