Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nst committed Sep 26, 2012
1 parent 5f2c6fa commit 224a98a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion model/ClassDisplay.m
Expand Up @@ -395,7 +395,7 @@ - (NSMutableString *)_parseUnnamedStructOrUnionVarEndCh:(char)endCh depth:(int *
- (NSDictionary *)typeEncParseStructOrUnionWithEncType:(NSString *)encType endCh:(char)endCh depth:(int *)depth sPart:(int)sPart inLine:(BOOL)inLine inParam:(BOOL)inParam spaceAfter:(BOOL)spaceAfter { - (NSDictionary *)typeEncParseStructOrUnionWithEncType:(NSString *)encType endCh:(char)endCh depth:(int *)depth sPart:(int)sPart inLine:(BOOL)inLine inParam:(BOOL)inParam spaceAfter:(BOOL)spaceAfter {
//ivT = "?=i[3f]b128i3b131i2c}"; // http://gcc.gnu.org/onlinedocs/gcc-3.0.4/gcc_7.html#SEC130 //ivT = "?=i[3f]b128i3b131i2c}"; // http://gcc.gnu.org/onlinedocs/gcc-3.0.4/gcc_7.html#SEC130


NSString *typeS = nil; NSString *typeS = @"";
NSString *modifierS = @""; NSString *modifierS = @"";
char *eqPos = strchr(ivT, '='); char *eqPos = strchr(ivT, '=');
char *innerSPos = strchr(ivT, '{'); char *innerSPos = strchr(ivT, '{');
Expand Down Expand Up @@ -435,6 +435,7 @@ - (NSDictionary *)typeEncParseStructOrUnionWithEncType:(NSString *)encType endCh
ivT = tmp; ivT = tmp;
} }
} }

typeS = [encType stringByAppendingString:typeS]; typeS = [encType stringByAppendingString:typeS];
--(*depth); --(*depth);


Expand Down

0 comments on commit 224a98a

Please sign in to comment.