Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions examples/two_dimensional_phase_lattice.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ class write_snapshots

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() )
Expand Down Expand Up @@ -126,7 +126,7 @@ class write_snapshots
};


int main( int argc , char **argv )
int main()
{
size_t size1 = 128 , size2 = 128;
state_type x( size1 , size2 , 0.0 );
Expand Down