Skip to content

Commit

Permalink
Fix regression.
Browse files Browse the repository at this point in the history
  • Loading branch information
thorstenhater committed Sep 24, 2024
1 parent 3855c5f commit c233d10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arbor/include/arbor/util/expected.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@ struct expected<void, E> {
// Swap ops.

void swap(expected& other) {
data_.swap(other.data);
data_.swap(other.data_);
}

// Accessors.
Expand Down

0 comments on commit c233d10

Please sign in to comment.