Fix dynamic_format_arg_store::push_back comment

This commit is contained in:
Victor Zverovich 2021-03-15 07:10:28 -07:00
parent 6151d0dc1e
commit 8308f52c2a

View File

@ -190,7 +190,7 @@ class dynamic_format_arg_store
/** /**
Adds named argument into the dynamic store for later passing to a formatting Adds named argument into the dynamic store for later passing to a formatting
function. ``std::reference_wrapper`` is supported to avoid copying of the function. ``std::reference_wrapper`` is supported to avoid copying of the
argument. The name is always stored by reference. argument. The name is always copied into the store.
*/ */
template <typename T> template <typename T>
void push_back(const detail::named_arg<char_type, T>& arg) { void push_back(const detail::named_arg<char_type, T>& arg) {