Replace using with typedef for compatibility with gcc-4.6

This commit is contained in:
Victor Zverovich
2018-02-11 08:32:02 -08:00
parent 0b508fd29d
commit 522de7b55d
4 changed files with 103 additions and 101 deletions

View File

@@ -309,7 +309,7 @@ class basic_printf_context :
using char_type = Char;
template <typename T>
using formatter_type = printf_formatter<T>;
struct formatter_type { typedef printf_formatter<T> type; };
private:
using base = internal::context_base<OutputIt, basic_printf_context, Char>;