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

Fixing config scanner.

Adding an exception to tnlAssert.
parent edbe1457
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
INCLUDE_DIRECTORIES( config )
ADD_SUBDIRECTORY( config )
ADD_SUBDIRECTORY( core )
ADD_SUBDIRECTORY( debug )
+1 −1
Original line number Diff line number Diff line
// Generated by Bisonc++ V4.01.00 on Wed, 24 Apr 2013 15:13:41 +0200
// Generated by Bisonc++ V4.01.00 on Thu, 06 Jun 2013 11:17:12 +0200

// $insert class.ih
#include "tnlConfigDescriptionParser.ih"
+1 −1
Original line number Diff line number Diff line
// Generated by Bisonc++ V4.01.00 on Wed, 24 Apr 2013 15:13:41 +0200
// Generated by Bisonc++ V4.01.00 on Thu, 06 Jun 2013 11:17:12 +0200

#ifndef tnlConfigDescriptionParserBase_h_included
#define tnlConfigDescriptionParserBase_h_included
+2 −2
Original line number Diff line number Diff line
@@ -2012,10 +2012,10 @@ void mCDSfree (void * ptr )


//extern int yywrap();
int mCDSFlexLexer :: yywrap()
/*int mCDSFlexLexer :: yywrap()
{
   return 1;
}
}*/

int yywrap()
{
+3 −0
Original line number Diff line number Diff line
@@ -119,6 +119,9 @@ class tnlArray : public tnlObject
   Element* data;
};

template< typename Element, typename Device, typename Index >
ostream& operator << ( ostream& str, const tnlArray< Element, Device, Index >& v );

#include <implementation/core/tnlArray_impl.h>

#endif /* TNLARRAY_H_ */
Loading