From 1037ad360babe326e0684adaa6755c0112566b0a Mon Sep 17 00:00:00 2001 From: David Lechner Date: Thu, 1 May 2025 23:20:15 -0500 Subject: [PATCH] fix indent in generated code Fix a line that was indented too much in the generated code. --- cppwinrt/code_writers.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cppwinrt/code_writers.h b/cppwinrt/code_writers.h index ae2920d56..ffc0ee948 100644 --- a/cppwinrt/code_writers.h +++ b/cppwinrt/code_writers.h @@ -1868,7 +1868,7 @@ namespace cppwinrt { auto param_name = param.Name(); - w.write("\n if (%) *% = detach_abi(winrt_impl_%);", param_name, param_name, param_name); + w.write("\n if (%) *% = detach_abi(winrt_impl_%);", param_name, param_name, param_name); } } }