| 849 | bool bValue; |
| 850 | |
| 851 | FClampedBit() : BitIndex(0), bValue(false) |
| 852 | { |
| 853 | } |
| 854 | |
| 855 | int64 Get() const { return bValue ? (static_cast<int64>(0) | (1LL << BitIndex)) : (static_cast<int64>(0) & (~(1LL << BitIndex))); } |
| 856 |
nothing calls this directly
no outgoing calls
no test coverage detected