| 248 | |
| 249 | template <typename T> |
| 250 | inline bool PackedValuesNotEqual(T a, T b) { |
| 251 | return a != b; |
| 252 | } |
| 253 | template <> |
| 254 | inline bool PackedValuesNotEqual(float a, float b) { |
| 255 | return reinterpret_cast<int32_t&>(a) != reinterpret_cast<int32_t&>(b); |
no outgoing calls
no test coverage detected