| 497 | template<> void VariableImpl<float2>::SetFloat2(float2 value, SetBy setby) { SetData(value, setby); } |
| 498 | template<> void VariableImpl<float3>::SetFloat3(float3 value, SetBy setby) { SetData(value, setby); } |
| 499 | template<> void VariableImpl<float4>::SetFloat4(float4 value, SetBy setby) { SetData(value, setby); } |
| 500 | template<> void VariableImpl<std::string>::SetString(std::string const& value, SetBy setby) { SetData(value, setby); } |
| 501 | |
| 502 | template <typename T> std::string vector_to_string(T v) |
nothing calls this directly
no outgoing calls
no test coverage detected