mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 12:49:45 +00:00
dbghelp: Replace inline static with static inline.
This commit is contained in:
parent
d8b24e3664
commit
6a23efdaa2
@ -41,14 +41,14 @@
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(dbghelp);
|
||||
WINE_DECLARE_DEBUG_CHANNEL(dbghelp_symt);
|
||||
|
||||
inline static int cmp_addr(ULONG64 a1, ULONG64 a2)
|
||||
static inline int cmp_addr(ULONG64 a1, ULONG64 a2)
|
||||
{
|
||||
if (a1 > a2) return 1;
|
||||
if (a1 < a2) return -1;
|
||||
return 0;
|
||||
}
|
||||
|
||||
inline static int cmp_sorttab_addr(const struct module* module, int idx, ULONG64 addr)
|
||||
static inline int cmp_sorttab_addr(const struct module* module, int idx, ULONG64 addr)
|
||||
{
|
||||
ULONG64 ref;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user