Skip to content

Commit

Permalink
corrections to calling syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
andysworkshop committed Oct 19, 2014
1 parent 9ba3e6c commit 175f415
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/include/net/physical/PhysicalLayer.h
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ namespace stm32plus {

// recursively initialise the features

return RecursivePhysicalLayerInit<PhysicalLayer,Features...>::tinit(this,params,*this);
return RecursivePhysicalLayerInit<PhysicalLayer,TPhy,Features<TPhy>...>::tinit(this,params,*this,*this);
}


Expand All @@ -85,7 +85,7 @@ namespace stm32plus {

// recursively startup the features

return RecursiveBoolStartup<PhysicalLayer,Features<TPhy>...>::tstartup(this);
return RecursiveBoolStartup<PhysicalLayer,TPhy,Features<TPhy>...>::tstartup(this);
}
}
}

0 comments on commit 175f415

Please sign in to comment.