fixed const qual warning as suggested by @mheily
This commit is contained in:
parent
7af2dbf91f
commit
a1d23056ac
1 changed files with 1 additions and 1 deletions
2
toml.c
2
toml.c
|
@ -298,7 +298,7 @@ struct toml_table_t {
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
static inline void xfree(const void* x) { if (x) FREE((void*)x); }
|
static inline void xfree(const void* x) { if (x) FREE((void*)(intptr_t)x); }
|
||||||
|
|
||||||
|
|
||||||
enum tokentype_t {
|
enum tokentype_t {
|
||||||
|
|
Loading…
Reference in a new issue