| 47 | |
| 48 | private: |
| 49 | inline bool IsAligned(i64 value) { |
| 50 | return Alignment ? value == AlignDown<i64>(value, Alignment) : true; |
| 51 | } |
| 52 | |
| 53 | inline bool IsAligned(const void* value) { |
| 54 | return Alignment ? value == AlignDown(value, Alignment) : true; |
nothing calls this directly
no test coverage detected