Skip to content

Commit

Permalink
#306: remove reorder warning
Browse files Browse the repository at this point in the history
  • Loading branch information
nlslatt committed Mar 21, 2019
1 parent c020fc3 commit 5741b21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vt/vrt/collection/balance/phase_msg.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ struct PhaseMsgBase : BaseMsgT {
using ProxyType = typename ColT::CollectionProxyType;
PhaseMsgBase() = default;
PhaseMsgBase(PhaseType const& in_cur_phase, ProxyType const& in_proxy)
: cur_phase_(in_cur_phase), proxy_(in_proxy), BaseMsgT()
: BaseMsgT(), proxy_(in_proxy), cur_phase_(in_cur_phase)
{ }

ProxyType getProxy() const { return proxy_; }
Expand Down

0 comments on commit 5741b21

Please sign in to comment.