Changeset 198 in dev for trunk/abdev/BasicCompiler_Common/src/ProcedureImpl.cpp
- Timestamp:
- Jun 27, 2007, 2:41:17 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/src/ProcedureImpl.cpp
r195 r198 131 131 } 132 132 133 Compiler::StringToType( temporary, type );133 compiler.StringToType( temporary, type ); 134 134 135 135 if( type.IsNull() ){ … … 259 259 } 260 260 261 Compiler::StringToType( temporary, type );261 compiler.StringToType( temporary, type ); 262 262 263 263 if( type.IsNull() ){ … … 328 328 temporary[i3]=sourceOfParams[i2]; 329 329 } 330 Compiler::StringToType( temporary, this->returnType );330 compiler.StringToType( temporary, this->returnType ); 331 331 if( this->returnType.IsNull() ) SmoothieException::Throw(3,temporary,nowLine); 332 332 … … 514 514 } 515 515 516 Compiler::StringToType( temporary, type );516 compiler.StringToType( temporary, type ); 517 517 518 518 if( type.IsNull() ){ … … 568 568 temporary[i3]=sourceOfParams[i2]; 569 569 } 570 Compiler::StringToType( temporary, this->returnType );570 compiler.StringToType( temporary, this->returnType ); 571 571 if( this->returnType.IsNull() ) SmoothieException::Throw(3,temporary,nowLine); 572 572 … … 685 685 } 686 686 687 Compiler::StringToType( temporary, type );687 compiler.StringToType( temporary, type ); 688 688 689 689 if( type.IsNull() ){ … … 739 739 temporary[i3]=sourceOfParams[i2]; 740 740 } 741 Compiler::StringToType( temporary, this->returnType );741 compiler.StringToType( temporary, this->returnType ); 742 742 if( this->returnType.IsNull() ) SmoothieException::Throw(3,temporary,nowLine); 743 743
Note:
See TracChangeset
for help on using the changeset viewer.