Skip to content

Commit

Permalink
Remove faulty default assignment ops
Browse files Browse the repository at this point in the history
  • Loading branch information
ckormanyos committed Nov 18, 2023
1 parent da5598f commit 46c1ed2
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions ref_app/src/util/STL/tuple
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,7 @@
struct xnothing final
{
constexpr xnothing() = default;
constexpr xnothing(const xnothing&) = default;
constexpr xnothing(xnothing&&) noexcept = default;
~xnothing() = default;
constexpr auto operator=(const xnothing&) -> xnothing& = default;
constexpr auto operator=(xnothing&&) noexcept -> xnothing& = default;
};

inline constexpr auto operator==(const xnothing&, const xnothing&) noexcept -> bool { return true; }
Expand Down

0 comments on commit 46c1ed2

Please sign in to comment.