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()