Skip to content

Commit

Permalink
Merge pull request #78 from magni-mar/patch-1
Browse files Browse the repository at this point in the history
Removing unused parameters
  • Loading branch information
NAThompson authored May 10, 2024
2 parents e1e1709 + b50a231 commit 74a91e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/const_step_iterator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const double b = 8.0 / 3.0;
struct lorenz
{
template< class State , class Deriv >
void operator()( const State &x , Deriv &dxdt , double t ) const
void operator()( const State &x , Deriv &dxdt , double ) const
{
dxdt[0] = sigma * ( x[1] - x[0] );
dxdt[1] = R * x[0] - x[1] - x[0] * x[2];
Expand All @@ -51,7 +51,7 @@ struct lorenz



int main( int argc , char **argv )
int main()
{
typedef std::array< double , 3 > state_type;

Expand Down

0 comments on commit 74a91e9

Please sign in to comment.