Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
drexlerd committed Aug 28, 2024
1 parent 7558af7 commit cbcd747
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/flatmemory/details/types/tuple.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ class Builder<Tuple<Ts...>> : public IBuilder<Builder<Tuple<Ts...>>>

Builder(std::conditional_t<IsTriviallyCopyable<Ts>, Ts, Builder<Ts>>&&... args)
requires(sizeof...(Ts) > 0)
: m_data(std::forward<std::conditional_t<IsTriviallyCopyable<Ts>, Ts, Builder<Ts>>>(args)...), m_buffer()
: m_data(std::forward<Ts>(args)...), m_buffer()
{
}

Expand Down

0 comments on commit cbcd747

Please sign in to comment.