aboutsummaryrefslogtreecommitdiff
path: root/src/liblzma/api/lzma.h
diff options
context:
space:
mode:
authorLasse Collin <lasse.collin@tukaani.org>2009-09-12 14:09:17 +0300
committerLasse Collin <lasse.collin@tukaani.org>2009-09-12 14:09:17 +0300
commit15ffd675ab7af84592eb1c23b0e9f4699aa0fd8c (patch)
treece4d0ac80a4a8c012e61b30a78422021589cb1fd /src/liblzma/api/lzma.h
parentUpdated THANKS. (diff)
downloadxz-15ffd675ab7af84592eb1c23b0e9f4699aa0fd8c.tar.xz
Fix GCC version check for nothrow attribute.
Diffstat (limited to '')
-rw-r--r--src/liblzma/api/lzma.h2
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