[AD] Stray ; in alconfig.h |
[ Thread Index |
Date Index
| More lists.liballeg.org/allegro-developers Archives
]
I found a stray semicolon that will put a spurious ; after the definition
of each inline function for platforms that don't actually inline them.
Probably not important, but should still be fixed IMO. Unless someone knows
of a reason why it should be like this?
Evert
Index: include/allegro/internal/alconfig.h
===================================================================
RCS file: /cvsroot/alleg/allegro/include/allegro/internal/alconfig.h,v
retrieving revision 1.18
diff -u -r1.18 alconfig.h
--- include/allegro/internal/alconfig.h 10 Mar 2005 18:32:54 -0000 1.18
+++ include/allegro/internal/alconfig.h 16 May 2005 08:50:35 -0000
@@ -196,7 +196,7 @@
#endif
#ifndef AL_INLINE
- #define AL_INLINE(type, name, args, code) type name args;
+ #define AL_INLINE(type, name, args, code) type name args
#endif
#ifndef AL_FUNC_DEPRECATED