1
0
ミラー元 https://git.tukaani.org/xz.git 前回の同期 2025-06-30 17:36:36 +00:00

Fix GCC version check for nothrow attribute.

このコミットが含まれているのは:
Lasse Collin 2009-09-12 14:09:17 +03:00
コミット 15ffd675ab

ファイルの表示

@ -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