diff options
author | Chris Robinson <[email protected]> | 2020-04-13 23:19:11 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2020-04-13 23:27:56 -0700 |
commit | 02d7fbfa0c3a24457b199688f9e6672ea253be14 (patch) | |
tree | 70805b41f126c3a465d66745a4e7e30f3394e10d /alc/logging.h | |
parent | 1d8ac4d61f5717c02e253a741175b037db97de4e (diff) |
Use standard attribute declarations
Diffstat (limited to 'alc/logging.h')
-rw-r--r-- | alc/logging.h | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/alc/logging.h b/alc/logging.h index ec6023a5..1077f08f 100644 --- a/alc/logging.h +++ b/alc/logging.h @@ -6,16 +6,9 @@ #include "opthelpers.h" -#ifdef __GNUC__ -#define DECL_FORMAT(x, y, z) __attribute__((format(x, (y), (z)))) -#else -#define DECL_FORMAT(x, y, z) -#endif - - extern FILE *gLogFile; -void al_print(FILE *logfile, const char *fmt, ...) DECL_FORMAT(printf, 2,3); +[[gnu::format(printf,2,3)]] void al_print(FILE *logfile, const char *fmt, ...); #if !defined(_WIN32) #define AL_PRINT fprintf #else |