Fix typo.

This commit is contained in:
Nicolas Lesser 2018-12-06 14:44:06 +01:00
parent ded9951701
commit 394e987350
No known key found for this signature in database
GPG Key ID: 55F9BC675F85A2DF

View File

@ -453,7 +453,7 @@ print(const text_style &tf, const String &format_str, const Args & ... args) {
typedef typename internal::char_t<String>::type char_t;
typedef typename buffer_context<char_t>::type context_t;
format_arg_store<context_t, Args...> as{args...};
vprint_text_style(tf, format_str, basic_format_args<context_t>(as));
vprint(tf, format_str, basic_format_args<context_t>(as));
}
#endif