From 15ffd675ab7af84592eb1c23b0e9f4699aa0fd8c Mon Sep 17 00:00:00 2001 From: Lasse Collin Date: Sat, 12 Sep 2009 14:09:17 +0300 Subject: [PATCH] Fix GCC version check for nothrow attribute. --- src/liblzma/api/lzma.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/liblzma/api/lzma.h b/src/liblzma/api/lzma.h index 9d28c28..dab2963 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 -- 2.7.4