mirror of
https://github.com/fmtlib/fmt.git
synced 2024-12-25 06:21:00 +00:00
Add format_args::size_type
This commit is contained in:
parent
8a77e7927e
commit
13b04044e5
@ -1483,6 +1483,8 @@ class format_args {
|
|||||||
void set_data(const internal::Arg *args) { args_ = args; }
|
void set_data(const internal::Arg *args) { args_ = args; }
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
typedef unsigned size_type;
|
||||||
|
|
||||||
format_args() : types_(0) {}
|
format_args() : types_(0) {}
|
||||||
|
|
||||||
template <typename... Args>
|
template <typename... Args>
|
||||||
@ -1492,7 +1494,7 @@ class format_args {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/** Returns the argument at specified index. */
|
/** Returns the argument at specified index. */
|
||||||
internal::Arg operator[](unsigned index) const {
|
internal::Arg operator[](size_type index) const {
|
||||||
using internal::Arg;
|
using internal::Arg;
|
||||||
Arg arg;
|
Arg arg;
|
||||||
bool use_values = type(internal::MAX_PACKED_ARGS - 1) == Arg::NONE;
|
bool use_values = type(internal::MAX_PACKED_ARGS - 1) == Arg::NONE;
|
||||||
|
Loading…
Reference in New Issue
Block a user