Changeset 193 in dev for trunk/abdev/BasicCompiler_Common/calculation.cpp
- Timestamp:
- Jun 26, 2007, 5:04:50 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/calculation.cpp
r182 r193 1 1 #include <jenga/include/smoothie/LexicalAnalysis.h> 2 3 #include <Compiler.h> 2 4 3 5 #include "../BasicCompiler_Common/common.h" … … 486 488 487 489 Type tempType; 488 if( ! Type::StringToType( temp2, tempType ) ){490 if( !Compiler::StringToType( temp2, tempType ) ){ 489 491 if(enableerror) SetError(3,temp2,cp); 490 492 return false; … … 690 692 { 691 693 Type tempType; 692 if( ! Type::StringToType( Parms, tempType ) ){694 if( !Compiler::StringToType( Parms, tempType ) ){ 693 695 if(bDebuggingWatchList){ 694 696 if( pIsMemoryAccessError ) *pIsMemoryAccessError = true;
Note:
See TracChangeset
for help on using the changeset viewer.