Make context_base::args() public

This commit is contained in:
Victor Zverovich 2018-04-14 12:40:26 -07:00
parent 48ae0506de
commit 7b8cb3135a
2 changed files with 3 additions and 3 deletions

View File

@ -814,8 +814,6 @@ class context_base {
basic_format_args<Context> args)
: parse_context_(format_str), out_(out), args_(args) {}
basic_format_args<Context> args() const { return args_; }
// Returns the argument with specified index.
format_arg do_get_arg(unsigned arg_id) {
format_arg arg = args_[arg_id];
@ -847,6 +845,8 @@ class context_base {
// Advances the begin iterator to ``it``.
void advance_to(iterator it) { out_ = it; }
basic_format_args<Context> args() const { return args_; }
};
// Extracts a reference to the container from back_insert_iterator.

View File

@ -1,7 +1,7 @@
/*
Formatting library for C++
Copyright (c) 2012 - 2016, Victor Zverovich
Copyright (c) 2012 - present, Victor Zverovich
All rights reserved.
Redistribution and use in source and binary forms, with or without