Skip to content

Commit

Permalink
Merge pull request #2049 from DARMA-tasking/2048-remove-duplicated-st…
Browse files Browse the repository at this point in the history
…ruct

2048: Remove duplicated `struct CommMsg`
  • Loading branch information
PhilMiller authored Dec 20, 2022
2 parents 1106e9e + ed5003a commit 7e647e7
Showing 1 changed file with 0 additions and 18 deletions.
18 changes: 0 additions & 18 deletions src/vt/vrt/collection/balance/zoltanlb/zoltanlb.h
Original file line number Diff line number Diff line change
Expand Up @@ -102,24 +102,6 @@ struct ZoltanLB : BaseLB {
void reduceCount(ReduceMsg* msg);
void allocateShareEdgeGIDs();

struct CommMsg : vt::Message {
using MessageParentType = vt::Message;
vt_msg_serialize_required(); // comm_

CommMsg() = default;
explicit CommMsg(ElementCommType in_comm)
: comm_(in_comm)
{ }

ElementCommType comm_;

template <typename SerializerT>
void serialize(SerializerT& s) {
MessageParentType::serialize(s);
s | comm_;
}
};

void recvSharedEdges(CommMsg* msg);

private:
Expand Down

0 comments on commit 7e647e7

Please sign in to comment.