From 9ed1ee9d0832d1eb4bdc5bf1a31d62878e967387 Mon Sep 17 00:00:00 2001 From: Jonathan Lifflander Date: Tue, 1 Oct 2019 09:00:15 -0700 Subject: [PATCH] #476: lb: fix --- src/vt/vrt/collection/balance/rotatelb/rotatelb.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vt/vrt/collection/balance/rotatelb/rotatelb.cc b/src/vt/vrt/collection/balance/rotatelb/rotatelb.cc index eddc602a57..3bfd603238 100644 --- a/src/vt/vrt/collection/balance/rotatelb/rotatelb.cc +++ b/src/vt/vrt/collection/balance/rotatelb/rotatelb.cc @@ -58,7 +58,7 @@ void RotateLB::init(objgroup::proxy::Proxy in_proxy) { void RotateLB::runLB() { auto const& this_node = theContext()->getNode(); auto const& num_nodes = theContext()->getNumNodes(); - NodeType const next_node = uninitialized_destination; + NodeType next_node = uninitialized_destination; if (arguments::ArgConfig::vt_lb_rotate_same_node) { next_node = this_node; } else {