From 175f4157cd8819beef9579d400ff3b27cb2e365c Mon Sep 17 00:00:00 2001 From: Andy Brown Date: Sun, 19 Oct 2014 21:33:18 +0100 Subject: [PATCH] corrections to calling syntax --- lib/include/net/physical/PhysicalLayer.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/include/net/physical/PhysicalLayer.h b/lib/include/net/physical/PhysicalLayer.h index d095fc34..7db2d8e5 100644 --- a/lib/include/net/physical/PhysicalLayer.h +++ b/lib/include/net/physical/PhysicalLayer.h @@ -61,7 +61,7 @@ namespace stm32plus { // recursively initialise the features - return RecursivePhysicalLayerInit::tinit(this,params,*this); + return RecursivePhysicalLayerInit...>::tinit(this,params,*this,*this); } @@ -85,7 +85,7 @@ namespace stm32plus { // recursively startup the features - return RecursiveBoolStartup...>::tstartup(this); + return RecursiveBoolStartup...>::tstartup(this); } } }