Changeset 735 in dev for trunk/ab5.0/abdev/BasicCompiler_Common/src/Compiler.cpp
- Timestamp:
- Aug 25, 2008, 5:26:44 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/BasicCompiler_Common/src/Compiler.cpp
r720 r735 346 346 tempType.PtrLevelDown(); 347 347 348 return (std::string)"*"+ TypeToString( tempType );348 return '*' + TypeToString( tempType ); 349 349 } 350 350 else if( type.IsObject() || type.IsStruct() ) … … 370 370 if( actualGenericTypesName.size() ) 371 371 { 372 actualGenericTypesName += ",";372 actualGenericTypesName += ','; 373 373 } 374 374 actualGenericTypesName += typeParameter.ToString(); 375 375 } 376 376 377 result += "<" + actualGenericTypesName + ">";377 result += '<' + actualGenericTypesName + '>'; 378 378 } 379 379
Note:
See TracChangeset
for help on using the changeset viewer.