MCPcopy Create free account
hub / github.com/OpenFodder/openfodder / Convert

Method Convert

Source/Utils/ini.hpp:609–620  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

607///Definitions
608template <typename T, typename U>
609inline T Converters::Convert(U value)
610{
611 fini_sstream_t sout;
612 T result;
613
614 sout << value;
615 sout >> result;
616
617 sout.str(fini_string_t());
618
619 return result;
620}
621
622template <>
623inline fini_string_t Converters::Convert<fini_string_t, fini_string_t>(fini_string_t value)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected