diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2009-09-12 14:09:17 +0300 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2009-09-12 14:09:17 +0300 |
commit | 15ffd675ab7af84592eb1c23b0e9f4699aa0fd8c (patch) | |
tree | ce4d0ac80a4a8c012e61b30a78422021589cb1fd | |
parent | Updated THANKS. (diff) | |
download | xz-15ffd675ab7af84592eb1c23b0e9f4699aa0fd8c.tar.xz |
Fix GCC version check for nothrow attribute.
-rw-r--r-- | src/liblzma/api/lzma.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liblzma/api/lzma.h b/src/liblzma/api/lzma.h index 9d28c28c..dab29636 100644 --- a/src/liblzma/api/lzma.h +++ b/src/liblzma/api/lzma.h @@ -210,7 +210,7 @@ #ifndef lzma_nothrow # if defined(__cplusplus) # define lzma_nothrow throw() -# elif __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4) +# elif __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 3) # define lzma_nothrow __attribute__((__nothrow__)) # else # define lzma_nothrow |