Changeset 322 in dev for trunk/abdev/BasicCompiler_Common/Intermediate_Step2.cpp
- Timestamp:
- Sep 24, 2007, 2:58:10 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/Intermediate_Step2.cpp
r290 r322 261 261 KillStringSpaces(Command+2); 262 262 i2 = 2; 263 if( Command[i2] == 1 && Command[i2+1] == ESC_ENUM ){ 263 if( Command[i2] == 1 && Command[i2+1] == ESC_ENUM ) 264 { 264 265 i2 += 2; 265 266 } 266 else if( memicmp( Command + i2, "Blittable(", 10 ) == 0 ){ 267 else if( Command[i2] == 1 && Command[i2+1] == ESC_DELEGATE ) 268 { 269 i2 += 2; 270 } 271 else if( memicmp( Command + i2, "Blittable(", 10 ) == 0 ) 272 { 267 273 i2 += 10; 268 274 i2 = JumpStringInPare(Command,i2)+1; … … 316 322 case ESC_NAMESPACE: 317 323 case ESC_IMPORTS: 324 case ESC_DELEGATE: 318 325 KillStringSpaces(Command+2); 319 326 break;
Note:
See TracChangeset
for help on using the changeset viewer.