@@ -17,15 +17,15 @@ template <typename> struct builder;
1717
1818template <> struct builder <defn::short32_msg_t > {
1919 template <auto Level, std::same_as<std::uint32_t >... Ts>
20- ALWAYS_INLINE static auto build (string_id id, module_id, Ts...) {
20+ static auto build (string_id id, module_id, Ts...) {
2121 using namespace msg ;
2222 return owning<defn::short32_msg_t >{" payload" _field = id};
2323 }
2424};
2525
2626template <typename Storage> struct catalog_builder {
2727 template <auto Level, std::same_as<std::uint32_t >... Ts>
28- ALWAYS_INLINE static auto build (string_id id, module_id m, Ts... msg_data) {
28+ static auto build (string_id id, module_id m, Ts... msg_data) {
2929 using namespace msg ;
3030 defn::catalog_msg_t ::owner_t <Storage> message{" severity" _field = Level,
3131 " module_id" _field = m};
@@ -48,7 +48,7 @@ template <typename Storage>
4848 requires std::same_as<typename Storage::value_type, std::uint32_t >
4949struct catalog_builder <Storage> {
5050 template <auto Level, std::same_as<std::uint32_t >... Ts>
51- ALWAYS_INLINE static auto build (string_id id, module_id m, Ts... msg_data) {
51+ static auto build (string_id id, module_id m, Ts... msg_data) {
5252 using namespace msg ;
5353 defn::catalog_msg_t ::owner_t <Storage> message{" severity" _field = Level,
5454 " module_id" _field = m};
@@ -65,7 +65,7 @@ struct catalog_builder<Storage> {
6565
6666template <> struct builder <defn::catalog_msg_t > {
6767 template <auto Level, std::same_as<std::uint32_t >... Ts>
68- ALWAYS_INLINE static auto build (string_id id, module_id m, Ts... msg_data) {
68+ static auto build (string_id id, module_id m, Ts... msg_data) {
6969 using namespace msg ;
7070 if constexpr (sizeof ...(Ts) <= 2u ) {
7171 constexpr auto header_size =
@@ -89,7 +89,7 @@ template <> struct builder<defn::catalog_msg_t> {
8989
9090struct default_builder {
9191 template <auto Level, std::same_as<std::uint32_t >... Ts>
92- ALWAYS_INLINE static auto build (string_id id, module_id m, Ts... msg_data) {
92+ static auto build (string_id id, module_id m, Ts... msg_data) {
9393 if constexpr (sizeof ...(Ts) == 0u ) {
9494 return builder<defn::short32_msg_t >{}.template build <Level>(
9595 id, m, msg_data...);
0 commit comments