mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-12 00:51:08 +00:00
Tidied
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@14730 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
eed00f55bf
commit
70754288cf
1 changed files with 5 additions and 3 deletions
|
@ -1171,8 +1171,6 @@
|
||||||
}
|
}
|
||||||
[a removeAllObjects]; // Parsed base type
|
[a removeAllObjects]; // Parsed base type
|
||||||
|
|
||||||
[d setObject: t forKey: @"BaseType"];
|
|
||||||
RELEASE(t);
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Handle protocol specification if necessary
|
* Handle protocol specification if necessary
|
||||||
|
@ -1191,10 +1189,14 @@
|
||||||
pos++;
|
pos++;
|
||||||
[self parseSpace];
|
[self parseSpace];
|
||||||
[a sortUsingSelector: @selector(compare:)];
|
[a sortUsingSelector: @selector(compare:)];
|
||||||
[d setObject: [a componentsJoinedByString: @","] forKey: @"Protocols"];
|
[t appendString: @"<"];
|
||||||
|
[t appendString: [a componentsJoinedByString: @","]];
|
||||||
|
[t appendString: @">"];
|
||||||
[a removeAllObjects];
|
[a removeAllObjects];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[d setObject: t forKey: @"BaseType"];
|
||||||
|
RELEASE(t);
|
||||||
/*
|
/*
|
||||||
* Set the 'Kind' of declaration ... one of 'Types', 'Functions',
|
* Set the 'Kind' of declaration ... one of 'Types', 'Functions',
|
||||||
* 'Variables', or 'Constants'
|
* 'Variables', or 'Constants'
|
||||||
|
|
Loading…
Reference in a new issue