Skip to content

Commit

Permalink
Adding missing typename keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
hkaiser committed Jul 19, 2017
1 parent 367a06c commit 6771143
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libgeodecomp/parallelization/hpxdataflowsimulator.h
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ class HPXDataflowSimulator : public DistributedSimulator<CELL>
std::size_t index = 0; std::size_t index = 0;
for (Region<1>::Iterator i = localRegion.begin(); i != localRegion.end(); ++i) { for (Region<1>::Iterator i = localRegion.begin(); i != localRegion.end(); ++i) {
nextTimeStepFutures << nextTimeStepFutures <<
hpx::async(ComponentType::setupDataflow_action(), hpx::async(typename ComponentType::setupDataflow_action(),
components[i->x()], lastTimeStepFutures[index], components[i->x()], lastTimeStepFutures[index],
startStep, endStep); startStep, endStep);
++index; ++index;
Expand Down

0 comments on commit 6771143

Please sign in to comment.