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

Small fixes.

parent 8543f0f5
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -128,7 +128,7 @@ class ConfigDescription
               return ( ( ConfigEntry< T > * ) entries[ i ] ) -> default_value;
            else return NULL;
         }
      std::cerr << "Asking for the default value of uknown parameter." << std::endl;
      std::cerr << "Asking for the default value of unknown parameter." << std::endl;
      return NULL;
   }
 
@@ -144,7 +144,7 @@ class ConfigDescription
               return ( ( ConfigEntry< T > * ) entries[ i ] ) -> default_value;
            else return NULL;
         }
      std::cerr << "Asking for the default value of uknown parameter." << std::endl;
      std::cerr << "Asking for the default value of unknown parameter." << std::endl;
      return NULL;
   }

+1 −1
Original line number Diff line number Diff line
@@ -106,7 +106,7 @@ void ParameterContainer::MPIBcast( int root, MPI_Comm mpi_comm )
         tnlParameterBase* param = parameters[ i ];
         param -> type. MPIBcast( root, MPI_COMM_WORLD );
         param -> name. MPIBcast( root, MPI_COMM_WORLD );
         if( param -> type == "mString" )
         if( param -> type == "String" )
         {
            ( ( tnlParameter< String >* ) param ) -> value. MPIBcast( root, mpi_comm );
         }
+1 −1

File changed.

Contains only whitespace changes.