@@ -246,7 +246,7 @@ auto newline_pos{CPP2_UFCS(find)(source, '\n')};
246
246
}
247
247
248
248
#line 184 "reflect.h2"
249
- [[nodiscard]] auto compiler_services::add_runtime_support_include (cpp2::impl::in<std::string_view> s) & -> decltype( auto ) { return static_cast <void >(CPP2_UFCS (emplace)((*cpp2::impl::assert_not_null (data ().includes )), s)); }
249
+ auto compiler_services::add_runtime_support_include (cpp2::impl::in<std::string_view> s) & -> void{ static_cast <void >(CPP2_UFCS (emplace)((*cpp2::impl::assert_not_null (data ().includes )), s)); }
250
250
251
251
#line 186 "reflect.h2"
252
252
[[nodiscard]] auto compiler_services::position () const -> source_position
@@ -287,7 +287,7 @@ auto newline_pos{CPP2_UFCS(find)(source, '\n')};
287
287
}
288
288
289
289
#line 226 "reflect.h2"
290
- [[nodiscard]] auto compiler_services::is_active () const & -> decltype( auto ) { return true ; }
290
+ [[nodiscard]] auto compiler_services::is_active () const & -> bool { return true ; }
291
291
292
292
compiler_services::~compiler_services () noexcept {}
293
293
compiler_services::compiler_services (compiler_services const & that)
@@ -382,11 +382,11 @@ declaration_base::declaration_base(declaration_base const& that)
382
382
[[nodiscard]] auto declaration::is_default_access () const & -> bool { return CPP2_UFCS (is_default_access)((*cpp2::impl::assert_not_null (n))); }
383
383
384
384
#line 336 "reflect.h2"
385
- [[nodiscard]] auto declaration::default_to_public () & -> decltype( auto ) { return static_cast <void >(CPP2_UFCS (make_public)((*cpp2::impl::assert_not_null (n)))); }
385
+ auto declaration::default_to_public () & -> void{ static_cast <void >(CPP2_UFCS (make_public)((*cpp2::impl::assert_not_null (n))));}
386
386
#line 337 "reflect.h2"
387
- [[nodiscard]] auto declaration::default_to_protected () & -> decltype( auto ) { return static_cast <void >(CPP2_UFCS (make_protected)((*cpp2::impl::assert_not_null (n)))); }
387
+ auto declaration::default_to_protected () & -> void{ static_cast <void >(CPP2_UFCS (make_protected)((*cpp2::impl::assert_not_null (n)))); }
388
388
#line 338 "reflect.h2"
389
- [[nodiscard]] auto declaration::default_to_private () & -> decltype( auto ) { return static_cast <void >(CPP2_UFCS (make_private)((*cpp2::impl::assert_not_null (n)))); }
389
+ auto declaration::default_to_private () & -> void{ static_cast <void >(CPP2_UFCS (make_private)((*cpp2::impl::assert_not_null (n))));}
390
390
391
391
#line 340 "reflect.h2"
392
392
[[nodiscard]] auto declaration::make_public () & -> bool { return CPP2_UFCS (make_public)((*cpp2::impl::assert_not_null (n))); }
@@ -586,7 +586,7 @@ declaration::declaration(declaration const& that)
586
586
[[nodiscard]] auto function_declaration::is_binary_comparison_function () const & -> bool { return CPP2_UFCS (is_binary_comparison_function)((*cpp2::impl::assert_not_null (n))); }
587
587
588
588
#line 467 "reflect.h2"
589
- [[nodiscard]] auto function_declaration::default_to_virtual () & -> decltype( auto ) { return static_cast <void >(CPP2_UFCS (make_function_virtual)((*cpp2::impl::assert_not_null (n)))); }
589
+ auto function_declaration::default_to_virtual () & -> void{ static_cast <void >(CPP2_UFCS (make_function_virtual)((*cpp2::impl::assert_not_null (n))));}
590
590
591
591
#line 469 "reflect.h2"
592
592
[[nodiscard]] auto function_declaration::make_virtual () & -> bool { return CPP2_UFCS (make_function_virtual)((*cpp2::impl::assert_not_null (n))); }
@@ -794,12 +794,12 @@ declaration::declaration(declaration const& that)
794
794
}
795
795
796
796
#line 658 "reflect.h2"
797
- [[nodiscard]] auto type_declaration::remove_marked_members () & -> decltype( auto ) { return CPP2_UFCS (type_remove_marked_members)((*cpp2::impl::assert_not_null (n))); }
797
+ auto type_declaration::remove_marked_members () & -> void{ CPP2_UFCS (type_remove_marked_members)((*cpp2::impl::assert_not_null (n))); }
798
798
#line 659 "reflect.h2"
799
- [[nodiscard]] auto type_declaration::remove_all_members () & -> decltype( auto ) { return CPP2_UFCS (type_remove_all_members)((*cpp2::impl::assert_not_null (n))); }
799
+ auto type_declaration::remove_all_members () & -> void{ CPP2_UFCS (type_remove_all_members)((*cpp2::impl::assert_not_null (n)));}
800
800
801
801
#line 661 "reflect.h2"
802
- [[nodiscard]] auto type_declaration::disable_member_function_generation () & -> decltype( auto ) { return CPP2_UFCS (type_disable_member_function_generation)((*cpp2::impl::assert_not_null (n))); }
802
+ auto type_declaration::disable_member_function_generation () & -> void{ CPP2_UFCS (type_disable_member_function_generation)((*cpp2::impl::assert_not_null (n))); }
803
803
804
804
type_declaration::type_declaration (type_declaration const & that)
805
805
: declaration{ static_cast <declaration const &>(that) }{}
0 commit comments