consistency tweaks and simplify documentation flags in make files by automatically adding most work map entries.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@37629 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2014-01-23 09:36:37 +00:00
parent 71f114887d
commit 37acb000fd
8 changed files with 141 additions and 89 deletions

View file

@ -81,7 +81,7 @@ static const int8_t typeInfoTable[] =
#pragma GCC diagnostic ignored "-Wchar-subscripts"
#endif
ENCODING_INLINE uint8_t
GS_STATIC_INLINE uint8_t
RoundToThePowerOfTwo (uint8_t value)
{
--value;
@ -91,7 +91,7 @@ RoundToThePowerOfTwo (uint8_t value)
return ++value;
}
ENCODING_INLINE const char *
GS_STATIC_INLINE const char *
GetNumericValue (const char *cursor, int *value)
{
*value = 0;
@ -102,7 +102,7 @@ GetNumericValue (const char *cursor, int *value)
return cursor;
}
ENCODING_INLINE const char *
GS_STATIC_INLINE const char *
SkipName (const char *cursor)
{
if (*cursor == '"')
@ -112,7 +112,7 @@ SkipName (const char *cursor)
return cursor;
}
ENCODING_INLINE const char *
GS_STATIC_INLINE const char *
SkipType (const char *cursor)
{
unsigned depth = 0;
@ -147,7 +147,7 @@ SkipType (const char *cursor)
return cursor;
}
ENCODING_INLINE const char *
GS_STATIC_INLINE const char *
GetQualifiers (const char *cursor, uint8_t *qualifiers)
{
*qualifiers = 0;
@ -198,7 +198,7 @@ typedef struct ParserState
*/
static const unsigned ParserInitialStackSize = 3;
ENCODING_INLINE ParserStackElement *
GS_STATIC_INLINE ParserStackElement *
ParserStackTop (ParserState *state)
{
return state->stackSize ? &state->stack[state->stackSize - 1] : NULL;