From 21418ec46e7e9bb40f77b2312761976d909722ec Mon Sep 17 00:00:00 2001 From: Nathaniel Hourt Date: Tue, 21 Sep 2021 12:36:07 -0500 Subject: [PATCH] Compiler incompatibility It broke again so poke it again. Perhaps all clang versions require `template` here? I'm not sure, haven't gotten around to testing all the different compilers on it yet. --- include/fc/reflect/reflect.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fc/reflect/reflect.hpp b/include/fc/reflect/reflect.hpp index e47d629..bb60b62 100644 --- a/include/fc/reflect/reflect.hpp +++ b/include/fc/reflect/reflect.hpp @@ -111,7 +111,7 @@ struct Derivation_reflection_transformer { } // namespace impl // Workaround to inconsistent compiler rules on whether template must/cannot be specified here -#if defined(__clang__) && __clang_major__ < 11 +#if defined(__clang__) #define MAYBE_TEMPLATE template #else #define MAYBE_TEMPLATE