Skip to content

Commit c3497f0

Browse files
committed
Cleanup
1 parent fbd13ad commit c3497f0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

benchmarks/src/any_swap.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ static_assert(std::is_trivially_copyable_v<trivial>);
1111

1212
struct small {
1313
std::array<int, 4> c{};
14-
small() = default;
15-
small(const small& other) = default;
16-
small& operator=(const small& other) = default;
17-
small(small&&) noexcept = default;
18-
small& operator=(small&& other) noexcept = default;
14+
small() = default;
15+
small(const small&) = default;
16+
small& operator=(const small&) = default;
17+
small(small&&) noexcept = default;
18+
small& operator=(small&&) noexcept = default;
1919
~small() {}
2020
};
2121
static_assert(!std::is_trivially_copyable_v<small>);

0 commit comments

Comments
 (0)