| 158 | */ |
| 159 | template <typename... Args> |
| 160 | std::string build_string(Args&&... args) |
| 161 | { |
| 162 | std::ostringstream oss; |
| 163 | int dummy[] = {(oss << args, 0)...}; |
| 164 | (void)dummy; // silence compiler warnings |
| 165 | return oss.str(); |
| 166 | } |
| 167 | |
| 168 | } // namespace lbann |
| 169 |
no outgoing calls