MCPcopy Create free account
hub / github.com/bshoshany/thread-pool / make_string

Function make_string

tests/BS_thread_pool_test.cpp:599–604  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

597 */
598template <typename... T>
599std::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.

Callers 3

detect_compilerFunction · 0.85
detect_libFunction · 0.85
try_os_thread_priorityFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected