@@ -181,7 +181,7 @@ compiler_services: @dll_visible @polymorphic_base @copyable type =
181
181
return ret;
182
182
}
183
183
184
- add_runtime_support_include: (inout this, s: std::string_view) = _=data().includes*.emplace( s );
184
+ add_runtime_support_include: (inout this, s: std::string_view) = { _=data().includes*.emplace( s ); }
185
185
186
186
position: (virtual this)
187
187
-> source_position
@@ -223,7 +223,7 @@ compiler_services: @dll_visible @polymorphic_base @copyable type =
223
223
) );
224
224
}
225
225
226
- is_active:(this) = true;
226
+ is_active:(this) -> bool = true;
227
227
}
228
228
229
229
@@ -333,9 +333,9 @@ declaration: @dll_visible @polymorphic_base @copyable type =
333
333
is_private : (this) -> bool = n*.is_private();
334
334
is_default_access: (this) -> bool = n*.is_default_access();
335
335
336
- default_to_public : (inout this) = _ = n*.make_public();
337
- default_to_protected: (inout this) = _ = n*.make_protected();
338
- default_to_private : (inout this) = _ = n*.make_private();
336
+ default_to_public : (inout this) = { _ = n*.make_public(); }
337
+ default_to_protected: (inout this) = { _ = n*.make_protected(); }
338
+ default_to_private : (inout this) = { _ = n*.make_private(); }
339
339
340
340
make_public : (inout this) -> bool = n*.make_public();
341
341
make_protected : (inout this) -> bool = n*.make_protected();
@@ -464,7 +464,7 @@ function_declaration: @dll_visible @copyable type =
464
464
465
465
is_binary_comparison_function: (this) -> bool = n*.is_binary_comparison_function();
466
466
467
- default_to_virtual : (inout this) = _ = n*.make_function_virtual();
467
+ default_to_virtual : (inout this) = { _ = n*.make_function_virtual(); }
468
468
469
469
make_virtual : (inout this) -> bool = n*.make_function_virtual();
470
470
@@ -655,10 +655,10 @@ type_declaration: @dll_visible @copyable type =
655
655
std::string("unexpected error while attempting to add member:\n") + source );
656
656
}
657
657
658
- remove_marked_members: (inout this) = n*.type_remove_marked_members();
659
- remove_all_members : (inout this) = n*.type_remove_all_members();
658
+ remove_marked_members: (inout this) = { n*.type_remove_marked_members(); }
659
+ remove_all_members : (inout this) = { n*.type_remove_all_members(); }
660
660
661
- disable_member_function_generation: (inout this) = n*.type_disable_member_function_generation();
661
+ disable_member_function_generation: (inout this) = { n*.type_disable_member_function_generation(); }
662
662
}
663
663
664
664
0 commit comments