Update of /cvsroot/cpptool/rfta/src/rfta
In directory sc8-pr-cvs1:/tmp/cvs-serv21068/src/rfta
Modified Files:
RefactoringError.cpp
Log Message:
-- added new exception cause-elements for inline-temp-refactoring
Index: RefactoringError.cpp
===================================================================
RCS file: /cvsroot/cpptool/rfta/src/rfta/RefactoringError.cpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** RefactoringError.cpp 19 Dec 2002 20:18:28 -0000 1.3
--- RefactoringError.cpp 28 Dec 2002 10:39:38 -0000 1.4
***************
*** 39,42 ****
--- 39,48 ----
case identifierIsNotLocalVariable:
return "the selected identifier is not a locale variable.";
+ case identifierIsNotInitialized:
+ return "the selected variable is not initialized in declaration.";
+ case initializerValueNotSupported:
+ return "the initializer value of the selected variable is not supported for this operation.";
+ case variableIsAssigned:
+ return "the temporary variable is assigned after initialization.";
}
|