Skip to content

Commit

Permalink
#2040: Also qualify remaining instances of member function names as s…
Browse files Browse the repository at this point in the history
…endMsg template arguments that nvcc didn't complain about this time
  • Loading branch information
PhilMiller committed Dec 13, 2022
1 parent 9a45fbe commit de4cd03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/vt/topos/location/location.impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -537,7 +537,7 @@ void EntityLocationCoord<EntityID>::routeMsgNode(

auto m = msg;
// send to the node discovered by the location manager
theMsg()->sendMsg<MessageT, routedHandler>(to_node, m);
theMsg()->sendMsg<MessageT, &EntityLocationCoord<EntityID>::routedHandler>(to_node, m);
} else {
vt_debug_print(
normal, location,
Expand Down Expand Up @@ -863,7 +863,7 @@ template <typename EntityID>
);
msg2->setResolvedNode(node);
theMsg()->markAsLocationMessage(msg2);
theMsg()->sendMsg<LocMsgType, updateLocation>(ask_node, msg2);
theMsg()->sendMsg<LocMsgType, &EntityLocationCoord<EntityID>::updateLocation>(ask_node, msg2);
});
theMsg()->popEpoch(epoch);
theTerm()->consume(epoch);
Expand Down

0 comments on commit de4cd03

Please sign in to comment.