* config.h.in (getRCSID): Mark inline to avoid compiler warnings.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gdl2/trunk@26978 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
ayers 2008-10-27 16:59:35 +00:00
parent f93cd4be18
commit 26ecdc2a00
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2008-10-27 David Ayers <ayers@fsfe.org>
* config.h.in (getRCSID): Mark inline to avoid compiler warnings.
2008-07-06 David Wetzel <dave@turbocat.de>
* EOControl/EOClassDescription.m (classDescriptionForClass:): Only

View file

@ -39,6 +39,6 @@
#define RCS_ID(name) \
static const char RCSID[] = name; \
static const char *getRCSID() { if (0) getRCSID(); return RCSID;}
static inline const char *getRCSID() { if (0) getRCSID(); return RCSID;}
#endif /* __config_h__ */