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

Deleting name from tnlString.

parent d6c97589
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -237,7 +237,7 @@ template< typename Element,
bool tnlConstSharedArray< Element, Device, Index > :: save( tnlFile& file ) const
{
   tnlAssert( this -> size != 0,
              cerr << "You try to save empty array. );
              cerr << "You try to save empty array." );
   if( ! tnlObject :: save( file ) )
      return false;
#ifdef HAVE_NOT_CXX11
+0 −4
Original line number Diff line number Diff line
@@ -74,10 +74,6 @@ class tnlObject
   //! Destructor
   virtual ~tnlObject(){};

   protected:

   //! Object name
   //tnlString name;
};

bool getObjectType( tnlFile& file, tnlString& type );
+1 −1
Original line number Diff line number Diff line
ADD_SUBDIRECTORY( core )
ADD_SUBDIRECTORY( diff )
ADD_SUBDIRECTORY( mesh )
#ADD_SUBDIRECTORY( mesh )
ADD_SUBDIRECTORY( solvers )

SET( headers  )
+3 −2
Original line number Diff line number Diff line
@@ -474,10 +474,11 @@ bool tnlFastCSRMatrix< Real, tnlHost, Index > :: Load( istream& file )

template< typename Real, typename Index >
void tnlFastCSRMatrix< Real, tnlHost, Index > :: printOut( ostream& str,
                                                           const tnlString& name,
		                                                     const Index lines ) const
{
   str << "Structure of tnlFastCSRMatrix" << endl;
   str << "Matrix name:" << this -> getName() << endl;
   str << "Matrix name:" << name << endl;
   str << "Matrix size:" << this -> getSize() << endl;
   str << "Allocated elements:" << nonzero_elements. getSize() << endl;
   str << "Matrix rows:" << endl;
+3 −2
Original line number Diff line number Diff line
@@ -610,10 +610,11 @@ void tnlFastRgCSRMatrix< Real, tnlHost, Index > :: vectorProduct( const tnlVecto

template< typename Real, typename Index >
void tnlFastRgCSRMatrix< Real, tnlHost, Index > :: printOut( ostream& str,
                                                             const tnlString& name, 
		                                                       const Index lines ) const
{
   str << "Structure of tnlFastRgCSRMatrix" << endl;
   str << "Matrix name:" << this -> getName() << endl;
   str << "Matrix name:" << name << endl;
   str << "Matrix size:" << this -> getSize() << endl;
   str << "Allocated elements:" << nonzero_elements. getSize() << endl;
   str << "Matrix blocks: " << block_offsets. getSize() << endl;
Loading