forked from fmtlib/fmt
Make context_base::args() public
This commit is contained in:
@ -814,8 +814,6 @@ class context_base {
|
|||||||
basic_format_args<Context> args)
|
basic_format_args<Context> args)
|
||||||
: parse_context_(format_str), out_(out), args_(args) {}
|
: parse_context_(format_str), out_(out), args_(args) {}
|
||||||
|
|
||||||
basic_format_args<Context> args() const { return args_; }
|
|
||||||
|
|
||||||
// Returns the argument with specified index.
|
// Returns the argument with specified index.
|
||||||
format_arg do_get_arg(unsigned arg_id) {
|
format_arg do_get_arg(unsigned arg_id) {
|
||||||
format_arg arg = args_[arg_id];
|
format_arg arg = args_[arg_id];
|
||||||
@ -847,6 +845,8 @@ class context_base {
|
|||||||
|
|
||||||
// Advances the begin iterator to ``it``.
|
// Advances the begin iterator to ``it``.
|
||||||
void advance_to(iterator it) { out_ = 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.
|
// Extracts a reference to the container from back_insert_iterator.
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
Formatting library for C++
|
Formatting library for C++
|
||||||
|
|
||||||
Copyright (c) 2012 - 2016, Victor Zverovich
|
Copyright (c) 2012 - present, Victor Zverovich
|
||||||
All rights reserved.
|
All rights reserved.
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
Redistribution and use in source and binary forms, with or without
|
||||||
|
Reference in New Issue
Block a user