From c06baee73edce0357d69a0cf88a0fb52dea38892 Mon Sep 17 00:00:00 2001 From: magni-mar <135731785+magni-mar@users.noreply.github.com> Date: Fri, 10 May 2024 14:49:53 +0000 Subject: [PATCH] Remove unused parameters --- examples/stuart_landau.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/stuart_landau.cpp b/examples/stuart_landau.cpp index da29b5e9..d20a4e8d 100644 --- a/examples/stuart_landau.cpp +++ b/examples/stuart_landau.cpp @@ -30,7 +30,7 @@ struct stuart_landau stuart_landau( double eta = 1.0 , double alpha = 1.0 ) : m_eta( eta ) , m_alpha( alpha ) { } - void operator()( const state_type &x , state_type &dxdt , double t ) const + void operator()( const state_type &x , state_type &dxdt , double ) const { const complex< double > I( 0.0 , 1.0 ); dxdt = ( 1.0 + m_eta * I ) * x - ( 1.0 + m_alpha * I ) * norm( x ) * x; @@ -71,7 +71,7 @@ struct streaming_observer -int main( int argc , char **argv ) +int main() { //[ stuart_landau_integration state_type x = complex< double >( 1.0 , 0.0 );