| 151 | * std::string result = fmt::vformat("{} and {} and {}", store); |
| 152 | */ |
| 153 | template <typename T> void push_back(const T& arg) { |
| 154 | if FMT_CONSTEXPR20 (need_copy<T>::value) |
| 155 | emplace_arg(dynamic_args_.push<stored_t<T>>(arg)); |
| 156 | else |
| 157 | emplace_arg(detail::unwrap(arg)); |
| 158 | } |
| 159 | |
| 160 | /** |
| 161 | * Adds a reference to the argument into the dynamic store for later passing |
nothing calls this directly
no test coverage detected