Commit 7b5f55d8 authored by Dominik Charousset's avatar Dominik Charousset

Remove redundant strip_and_convert_t

parent 3d4450f7
...@@ -62,7 +62,7 @@ public: ...@@ -62,7 +62,7 @@ public:
using namespace detail; using namespace detail;
using value_type = strip_and_convert_t<T>; using value_type = strip_and_convert_t<T>;
static_assert(sendable<value_type>); static_assert(sendable<value_type>);
storage_size_ += padded_size_v<strip_and_convert_t<value_type>>; storage_size_ += padded_size_v<value_type>;
types_.push_back(type_id_v<value_type>); types_.push_back(type_id_v<value_type>);
elements_.emplace_back(make_message_builder_element(std::forward<T>(x))); elements_.emplace_back(make_message_builder_element(std::forward<T>(x)));
return *this; return *this;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment