| 92 | union Double2BytesConverter |
| 93 | { |
| 94 | Double2BytesConverter() |
| 95 | { |
| 96 | buf[0] = 0; |
| 97 | buf[1] = 0; |
| 98 | buf[2] = 0; |
| 99 | buf[3] = 0; |
| 100 | buf[4] = 0; |
| 101 | buf[5] = 0; |
| 102 | buf[6] = 0; |
| 103 | buf[7] = 0; |
| 104 | } |
| 105 | |
| 106 | double f; |
| 107 | char buf[8]; |
nothing calls this directly
no outgoing calls
no test coverage detected