1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-06-21 01:27:14 +02:00

Cleanup SQLite code.

This commit is contained in:
Sandu Liviu Catalin
2020-03-22 03:03:05 +02:00
parent 8ea13de743
commit 05990afedf
3 changed files with 39 additions and 40 deletions

View File

@ -409,6 +409,12 @@ SQUIRREL_API void sq_setnativedebughook(HSQUIRRELVM v,SQDEBUGHOOK hook);
# define SQ_UNUSED_ARG(x) x
#endif
#ifdef __GNUC__
# define SQ_UNUSED_TYPEDEF(x) x __attribute__((__unused__))
#else
# define SQ_UNUSED_TYPEDEF(x) x
#endif
#ifdef __cplusplus
} /*extern "C"*/
#endif