| 597 | */ |
| 598 | template <typename... T> |
| 599 | std::string make_string(const T&... items) |
| 600 | { |
| 601 | std::ostringstream out; |
| 602 | (out << ... << items); |
| 603 | return out.str(); |
| 604 | } |
| 605 | |
| 606 | /** |
| 607 | * @brief Detect the compiler used to compile this program. |
no outgoing calls
no test coverage detected