MCPcopy Create free account
hub / github.com/AnswerDotAI/gpu.cpp / toString

Function toString

utils/logging.hpp:34–39  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

32
33 template <typename T>
34 inline std::string toString(const T &value)
35 {
36 std::ostringstream oss;
37 oss << value;
38 return oss.str();
39 }
40
41/**
42 * @brief Log a message to the logger. If NO_LOG is defined in a source or as a

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected