Commit 1fb10524 authored by Harris Hancock's avatar Harris Hancock

Remove defaulted Tuple ctor (conflicts w/ variadic ctor)

parent 120f6edb
......@@ -153,7 +153,6 @@ class Tuple {
// The actual Tuple class (used for tuples of size other than 1).
public:
Tuple() = default;
template <typename... U>
constexpr inline Tuple(Tuple<U...>&& other): impl(kj::mv(other)) {}
template <typename... U>
......
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