| 115 | //============================================================================// |
| 116 | |
| 117 | static std::string ftoa(float v) { |
| 118 | char buf[64]; |
| 119 | snprintf(buf, sizeof(buf), floatFormat.c_str(), v); |
| 120 | return buf; |
| 121 | } |
| 122 | |
| 123 | |
| 124 | static std::string ftoa(const float* va, int count) { |
no test coverage detected