| 750 | } |
| 751 | |
| 752 | static bool Between(uint64_t val, uint64_t low, uint64_t high) { |
| 753 | bool result = (val >= low) && (val <= high); |
| 754 | if (!result) { |
| 755 | fprintf(stderr, "Value %llu is not in range [%llu, %llu]\n", |
| 756 | (unsigned long long)(val), (unsigned long long)(low), |
| 757 | (unsigned long long)(high)); |
| 758 | } |
| 759 | return result; |
| 760 | } |
| 761 | |
| 762 | class TableTest {}; |
| 763 |