More iterator support & fmt::count

This commit is contained in:
Victor Zverovich
2018-01-17 22:04:24 -08:00
parent e3b69efbe1
commit 64b349aee2
3 changed files with 60 additions and 15 deletions
+2
View File
@@ -929,6 +929,8 @@ class arg_store {
arg_store(const Args &... args)
: data_{internal::make_arg<IS_PACKED, Context>(args)...} {}
basic_format_args<Context> operator*() const { return *this; }
const value_type *data() const { return data_; }
};