This commit is contained in:
Timur A. Fatkhullin
2024-05-01 17:17:05 +03:00
parent 066cb7cf95
commit 0d64e0cf44
5 changed files with 35 additions and 14 deletions

View File

@@ -419,6 +419,10 @@ public:
template <typename ValueT, typename SerializedT>
static ValueT deserialize(const SerializedT& svalue)
{
if constexpr (std::is_void_v<ValueT>) {
return;
}
ValueT res;
if constexpr (traits::adc_is_tuple_v<ValueT>) {