Use "static const", some GCCs don't like "const static"

This commit is contained in:
Martin Willi 2010-03-03 10:44:01 +01:00
parent 1be3298807
commit 1abab9ec4f
1 changed files with 2 additions and 2 deletions

View File

@ -125,7 +125,7 @@
#define METHOD(iface, name, ret, this, ...) \
static ret name(union {iface *_public; this;} \
__attribute__((transparent_union)), ##__VA_ARGS__); \
const static typeof(name) *_##name = (const typeof(name)*)name; \
static const typeof(name) *_##name = (const typeof(name)*)name; \
static ret name(this, ##__VA_ARGS__)
/**
@ -134,7 +134,7 @@
#define METHOD2(iface1, iface2, name, ret, this, ...) \
static ret name(union {iface1 *_public1; iface2 *_public2; this;} \
__attribute__((transparent_union)), ##__VA_ARGS__); \
const static typeof(name) *_##name = (const typeof(name)*)name; \
static const typeof(name) *_##name = (const typeof(name)*)name; \
static ret name(this, ##__VA_ARGS__)
/**