Skip to content

Commit

Permalink
#2040 Clarify reference to static member functions in template argume…
Browse files Browse the repository at this point in the history
…nt to appease nvcc 11.4
  • Loading branch information
PhilMiller committed Dec 12, 2022
1 parent 63376f6 commit bd57f3c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/vt/topos/location/location.impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ void EntityLocationCoord<EntityID>::registerEntity(
);
msg->setResolvedNode(this_node);
theMsg()->markAsLocationMessage(msg);
theMsg()->sendMsg<LocMsgType, updateLocation>(home, msg);
theMsg()->sendMsg<LocMsgType, &EntityLocationCoord<EntityID>::updateLocation>(home, msg);
}
}
}
Expand Down Expand Up @@ -424,7 +424,7 @@ void EntityLocationCoord<EntityID>::getLocation(
this_inst, id, event_id, this_node, home_node
);
theMsg()->markAsLocationMessage(msg);
theMsg()->sendMsg<LocMsgType, getLocationHandler>(home_node, msg);
theMsg()->sendMsg<LocMsgType, &EntityLocationCoord<EntityID>::getLocationHandler>(home_node, msg);
// save a pending action when information about location arrives
pending_actions_.emplace(
std::piecewise_construct,
Expand Down Expand Up @@ -497,7 +497,7 @@ void EntityLocationCoord<EntityID>::sendEagerUpdate(
auto msg = makeMessage<LocMsgType>(
this_inst, id, ask_node, home_node, deliver_node
);
theMsg()->sendMsg<LocMsgType, recvEagerUpdate>(ask_node, msg);
theMsg()->sendMsg<LocMsgType, &EntityLocationCoord<EntityID>::recvEagerUpdate>(ask_node, msg);
}
}

Expand Down

0 comments on commit bd57f3c

Please sign in to comment.