Commit bd14cf8e authored by Tomáš Oberhuber's avatar Tomáš Oberhuber Committed by Tomáš Oberhuber
Browse files

Fixed type of verbose in tnl-diff.

parent 5fb2f09f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -28,7 +28,7 @@ void setupConfig( Config::ConfigDescription& config )
   config.addEntry< bool >( "write-graph", "Draws a graph in the Gnuplot format of the dependence of the error norm on t.", true );
   config.addEntry< bool >( "write-log-graph", "Draws a logarithmic graph in the Gnuplot format of the dependence of the error norm on t.", true );
   config.addEntry< double >( "snapshot-period", "The period between consecutive snapshots.", 0.0 );
   config.addEntry< int >( "verbose", "Sets verbosity.", 1 );
   config.addEntry< bool >( "verbose", "Sets verbosity.", true );
}

int main( int argc, char* argv[] )
+1 −1
Original line number Diff line number Diff line
@@ -604,7 +604,7 @@ bool setValueType( const MeshPointer& meshPointer,
template< typename Mesh >
bool processFiles( const Config::ParameterContainer& parameters )
{
   int verbose = parameters. getParameter< int >( "verbose");
   int verbose = parameters. getParameter< bool >( "verbose");
   std::vector< String > inputFiles = parameters. getParameter< std::vector< String > >( "input-files" );

   /****