Skip to content

Commit

Permalink
Merge branch '1.0.0-697-fix-warnings' into 1.0.0-beta.5-proposed-update
Browse files Browse the repository at this point in the history
  • Loading branch information
lifflander committed Feb 19, 2020
2 parents 1d27431 + cd6b91c commit acdc52e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/vt/trace/trace_log.h
Original file line number Diff line number Diff line change
Expand Up @@ -136,13 +136,13 @@ struct Log final {
} user;

// Copy based on type.
Data(Data const& data) {
copyFrom(data);
Data(Data const& in) {
copyFrom(in);
}

// Move based on type
Data(Data&& data) {
moveFrom(std::move(data));
Data(Data&& in) {
moveFrom(std::move(in));
}

Data &operator=(Data const& other_data) {
Expand Down

0 comments on commit acdc52e

Please sign in to comment.