From ed4317e79050bf22974ac5e43d26289586f6048b Mon Sep 17 00:00:00 2001 From: "Ralf W. Grosse-Kunstleve" Date: Fri, 28 Apr 2023 21:53:00 -0700 Subject: [PATCH] clang-format 16 auto fix --- tests/test_class_sh_property_non_owning.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_class_sh_property_non_owning.cpp b/tests/test_class_sh_property_non_owning.cpp index d15bf23a7..cd7fc5c60 100644 --- a/tests/test_class_sh_property_non_owning.cpp +++ b/tests/test_class_sh_property_non_owning.cpp @@ -14,8 +14,8 @@ struct CoreField { struct DataField { DataField(int i_value, int i_shared, int i_unique) : core_fld_value{i_value}, core_fld_shared_ptr{new CoreField{i_shared}}, - core_fld_raw_ptr{core_fld_shared_ptr.get()}, core_fld_unique_ptr{ - new CoreField{i_unique}} {} + core_fld_raw_ptr{core_fld_shared_ptr.get()}, + core_fld_unique_ptr{new CoreField{i_unique}} {} CoreField core_fld_value; std::shared_ptr core_fld_shared_ptr; CoreField *core_fld_raw_ptr;