From 3b2ac009634ecec06f0e89683db24498fed0df63 Mon Sep 17 00:00:00 2001 From: magni-mar <135731785+magni-mar@users.noreply.github.com> Date: Fri, 10 May 2024 14:48:39 +0000 Subject: [PATCH] Remove unused parameters --- examples/two_dimensional_phase_lattice.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/two_dimensional_phase_lattice.cpp b/examples/two_dimensional_phase_lattice.cpp index 1fe4b955..64c271b8 100644 --- a/examples/two_dimensional_phase_lattice.cpp +++ b/examples/two_dimensional_phase_lattice.cpp @@ -98,7 +98,7 @@ public: write_snapshots( void ) : m_count( 0 ) { } - void operator()( const state_type &x , double t ) + void operator()( const state_type &x , double ) { map< size_t , string >::const_iterator it = m_snapshots.find( m_count ); if( it != m_snapshots.end() ) @@ -126,7 +126,7 @@ private: }; -int main( int argc , char **argv ) +int main() { size_t size1 = 128 , size2 = 128; state_type x( size1 , size2 , 0.0 );