* Convert string to float. * * @return Float value of string. */
| 419 | * @return Float value of string. |
| 420 | */ |
| 421 | float toFloat(void) const |
| 422 | { |
| 423 | return std::strtof(m_stdStr.c_str(), nullptr); |
| 424 | } |
| 425 | |
| 426 | /** |
| 427 | * Convert string to double. |
no test coverage detected