|
From: <net...@us...> - 2003-12-16 13:29:05
|
Update of /cvsroot/cpptool/rfta/src/rftaparser
In directory sc8-pr-cvs1:/tmp/cvs-serv25781/rfta/src/rftaparser
Modified Files:
SourceASTNode.cpp
Log Message:
-- disabled test for equal length of 'preprocessed' and 'orginal' source.
Index: SourceASTNode.cpp
===================================================================
RCS file: /cvsroot/cpptool/rfta/src/rftaparser/SourceASTNode.cpp,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** SourceASTNode.cpp 4 May 2003 07:34:06 -0000 1.8
--- SourceASTNode.cpp 16 Dec 2003 13:29:01 -0000 1.9
***************
*** 36,41 ****
--- 36,44 ----
, blankedSourceStart_( blankedSource_.c_str() )
{
+ /*
+ TODO: AndreBaresel: why is this check needed ? For preprocessed code that length can differ !!
if ( blankedSource_.length() != realSource_.length() )
throw std::invalid_argument( "blanked & real length do not match." );
+ */
}
|