Workaround a bug in gcc 5.1

This commit is contained in:
Victor Zverovich
2018-02-28 06:14:56 -08:00
parent 81074c7048
commit 698d909706

View File

@ -646,8 +646,11 @@ class null_terminating_iterator {
return ptr_ >= other.ptr_; return ptr_ >= other.ptr_;
} }
friend FMT_CONSTEXPR_DECL const Char *pointer_from<Char>( // This should be a friend specialization pointer_from<Char> but the latter
null_terminating_iterator it); // doesn't compile by gcc 5.1 due to a compiler bug.
template <typename CharT>
friend FMT_CONSTEXPR_DECL const CharT *pointer_from(
null_terminating_iterator<CharT> it);
private: private:
const Char *ptr_; const Char *ptr_;