* lib/hamt.h:Use __GNUC_MINOR__, not __GNUC_MINOR.
+2023-02-13 ChuanGang Jiang <jiangchuanganghw@outlook.com> (tiny change)
+
+ hamt: Detect GCC version correctly.
+ * lib/hamt.h:Use __GNUC_MINOR__, not __GNUC_MINOR.
+
2023-02-11 Bruno Haible <bruno@clisp.org>
terminfo, termcap: Avoid wrong configure result with clang ≥ 15.
We can define it only when the compiler supports _Atomic. For GCC,
it is supported starting with GCC 4.9. */
-#if (__GNUC__ + (__GNUC_MINOR >= 9) > 4) \
+#if (__GNUC__ + (__GNUC_MINOR__ >= 9) > 4) \
&& __STDC_VERSION__ >= 201112L && !defined __STD_NO_ATOMICS__ \
&& !defined __cplusplus
# define GL_HAMT_THREAD_SAFE 1