| 198 | } |
| 199 | |
| 200 | inline BitWidth WidthF(double f) { |
| 201 | return static_cast<double>(static_cast<float>(f)) == f ? BIT_WIDTH_32 |
| 202 | : BIT_WIDTH_64; |
| 203 | } |
| 204 | |
| 205 | // Base class of all types below. |
| 206 | // Points into the data buffer and allows access to one type. |
no outgoing calls
no test coverage detected