Update of /cvsroot/cpptool/rfta/src/rfta
In directory sc8-pr-cvs1:/tmp/cvs-serv28151/rfta/src/rfta
Modified Files:
SplitDeclarationRefactoring.cpp SplitTempRefactoring.cpp
Log Message:
-- small interface change for blanker
Index: SplitDeclarationRefactoring.cpp
===================================================================
RCS file: /cvsroot/cpptool/rfta/src/rfta/SplitDeclarationRefactoring.cpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** SplitDeclarationRefactoring.cpp 26 May 2003 21:12:33 -0000 1.3
--- SplitDeclarationRefactoring.cpp 16 Dec 2003 13:43:34 -0000 1.4
***************
*** 27,31 ****
#include "CodeRewriter.h"
-
namespace Refactoring
{
--- 27,30 ----
***************
*** 54,58 ****
throw RefactoringError( RefactoringError::selectionNotInSource );
! NullPPDirectiveListener nullListener;
std::string blankedSource;
NonSemanticBlanker blanker( source, blankedSource, nullListener );
--- 53,57 ----
throw RefactoringError( RefactoringError::selectionNotInSource );
! PPDirectiveListenerPtr nullListener(new NullPPDirectiveListener());
std::string blankedSource;
NonSemanticBlanker blanker( source, blankedSource, nullListener );
Index: SplitTempRefactoring.cpp
===================================================================
RCS file: /cvsroot/cpptool/rfta/src/rfta/SplitTempRefactoring.cpp,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** SplitTempRefactoring.cpp 27 Apr 2003 22:02:03 -0000 1.8
--- SplitTempRefactoring.cpp 16 Dec 2003 13:43:34 -0000 1.9
***************
*** 48,52 ****
throw RefactoringError( RefactoringError::selectionNotInSource );
! NullPPDirectiveListener nullListener;
std::string blankedSource;
NonSemanticBlanker blanker( source, blankedSource, nullListener );
--- 48,52 ----
throw RefactoringError( RefactoringError::selectionNotInSource );
! PPDirectiveListenerPtr nullListener(new NullPPDirectiveListener());
std::string blankedSource;
NonSemanticBlanker blanker( source, blankedSource, nullListener );
|