Skip to content

Commit

Permalink
#2249: Fix code quality issue
Browse files Browse the repository at this point in the history
  • Loading branch information
JacobDomagala committed May 29, 2024
1 parent e82ca2e commit 4563c33
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/perf/send_cost.cc
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,9 @@ struct NodeObj {
s | start_;
}

std::vector<int32_t>* payload_;
std::vector<int32_t>* payload_ = nullptr;
bool owning_ = false;
DurationMilli start_;
DurationMilli start_ = {};
};

void sendHandler(NodeObj::ObjGroupMsg* msg) {
Expand Down Expand Up @@ -219,8 +219,8 @@ struct Hello : vt::Collection<Hello, vt::Index1D> {
s | *payload_;
}

DurationMilli start_;
std::vector<int32_t>* payload_ = {};
DurationMilli start_ = {};
std::vector<int32_t>* payload_ = nullptr;
bool owning_ = false;
};

Expand Down

0 comments on commit 4563c33

Please sign in to comment.