From dd683abae7bc67c74c46e2b7ddb92afc7057e503 Mon Sep 17 00:00:00 2001 From: Jeremy Voorhis Date: Sun, 10 Jan 2016 19:47:36 -0800 Subject: [PATCH] Fix typographical error (variable name) in example for C.30. --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 206d1ad..827774d 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -3545,7 +3545,7 @@ Only define a non-default destructor if a class needs to execute code that is no template final_action finally(A act) // deduce action type { - return final_action{a}; + return final_action{act}; } void test()