| 2516 | |
| 2517 | |
| 2518 | static void |
| 2519 | icvXMLWriteReal( CvFileStorage* fs, const char* key, double value ) |
| 2520 | { |
| 2521 | char buf[128]; |
| 2522 | int len = (int)strlen( icvDoubleToString( buf, value )); |
| 2523 | icvXMLWriteScalar( fs, key, buf, len ); |
| 2524 | } |
| 2525 | |
| 2526 | |
| 2527 | static void |
nothing calls this directly
no test coverage detected