Commit 476f25cd authored by Victor Zverovich's avatar Victor Zverovich

Remove ancient gcc workaround

parent c9d5a08e
...@@ -3195,8 +3195,6 @@ arg_join<It, wchar_t> join(It begin, It end, wstring_view sep) { ...@@ -3195,8 +3195,6 @@ arg_join<It, wchar_t> join(It begin, It end, wstring_view sep) {
return {begin, end, 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 \rst
Returns an object that formats `range` with elements separated by `sep`. Returns an object that formats `range` with elements separated by `sep`.
...@@ -3219,7 +3217,6 @@ arg_join<internal::iterator_t<const Range>, wchar_t> join(const Range& range, ...@@ -3219,7 +3217,6 @@ arg_join<internal::iterator_t<const Range>, wchar_t> join(const Range& range,
wstring_view sep) { wstring_view sep) {
return join(std::begin(range), std::end(range), sep); return join(std::begin(range), std::end(range), sep);
} }
#endif
/** /**
\rst \rst
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment