mirror of
https://github.com/boostorg/system.git
synced 2025-07-30 12:37:13 +02:00
Update #if condition
This commit is contained in:
@ -49,7 +49,7 @@ inline void snprintf( char * buffer, std::size_t len, char const * format, ... )
|
|||||||
|
|
||||||
#else
|
#else
|
||||||
|
|
||||||
#if __GNUC__ >= 3
|
#if defined(__GNUC__) && __GNUC__ >= 3
|
||||||
__attribute__((__format__ (__printf__, 3, 4)))
|
__attribute__((__format__ (__printf__, 3, 4)))
|
||||||
#endif
|
#endif
|
||||||
inline void snprintf( char * buffer, std::size_t len, char const * format, ... )
|
inline void snprintf( char * buffer, std::size_t len, char const * format, ... )
|
||||||
|
Reference in New Issue
Block a user