4.3 not 4.2

This commit is contained in:
Mitchell Livingston 2009-11-02 01:10:04 +00:00
parent a43b73aad0
commit aac02231c4
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ extern "C" {
#endif
#ifndef TR_GNUC_NULL_TERMINATED
#if __GNUC__ > 4 || ( __GNUC__ == 4 && __GNUC_MINOR__ >= 2 )
#if __GNUC__ > 4 || ( __GNUC__ == 4 && __GNUC_MINOR__ >= 3 )
#define TR_GNUC_NULL_TERMINATED __attribute__ ( ( __sentinel__ ) )
#define TR_GNUC_HOT __attribute ( ( hot ) )
#else