From 476f25cd8188ebd125f61bceba4f584ff1ffe85c Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Wed, 3 Jul 2019 16:37:02 -0700 Subject: [PATCH] Remove ancient gcc workaround --- include/fmt/format.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/include/fmt/format.h b/include/fmt/format.h index 4cb2423d..9299782f 100644 --- a/include/fmt/format.h +++ b/include/fmt/format.h @@ -3195,8 +3195,6 @@ arg_join join(It begin, It end, wstring_view sep) { return {begin, end, sep}; } -// gcc 4.4 on join: internal compiler error: in tsubst_copy, at cp/pt.c:10122 -#if !FMT_GCC_VERSION || FMT_GCC_VERSION >= 405 /** \rst Returns an object that formats `range` with elements separated by `sep`. @@ -3219,7 +3217,6 @@ arg_join, wchar_t> join(const Range& range, wstring_view sep) { return join(std::begin(range), std::end(range), sep); } -#endif /** \rst