4#ifndef TETL_FORMAT_FORMAT_ARG_STORE_HPP
5#define TETL_FORMAT_FORMAT_ARG_STORE_HPP
7#include <etl/_array/array.hpp>
8#include <etl/_format/basic_format_arg.hpp>
10namespace etl::detail {
12template <
typename Context,
typename... Args>
13struct format_arg_store {
14 array<basic_format_arg<Context>,
sizeof...(Args)> args;
Definition adjacent_find.hpp:9
A container that encapsulates fixed size arrays.
Definition array.hpp:49