MCPcopy Create free account
hub / github.com/c42f/tinyformat / formatValueAsType

Class formatValueAsType

tinyformat.h:225–228  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

223// should never be called.
224template<typename T, typename fmtT, bool convertible = is_convertible<T, fmtT>::value>
225struct formatValueAsType
226{
227 static void invoke(std::ostream& /*out*/, const T& /*value*/) { TINYFORMAT_ASSERT(0); }
228};
229// Specialized version for types that can actually be converted to fmtT, as
230// indicated by the "convertible" template parameter.
231template<typename T, typename fmtT>

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected