| 1453 | a formating function. |
| 1454 | */ |
| 1455 | template <typename T> void push_back(std::reference_wrapper<T> arg) { |
| 1456 | static_assert( |
| 1457 | need_copy<T>::value, |
| 1458 | "objects of built-in types and string views are always copied"); |
| 1459 | emplace_arg(arg.get()); |
| 1460 | } |
| 1461 | }; |
| 1462 | |
| 1463 | /** |
no test coverage detected