| 535 | } |
| 536 | |
| 537 | static bool Between(uint64 val, uint64 low, uint64 high) { |
| 538 | bool result = (val >= low) && (val <= high); |
| 539 | if (!result) { |
| 540 | fprintf(stderr, "Value %llu is not in range [%llu, %llu]\n", |
| 541 | static_cast<unsigned long long>(val), |
| 542 | static_cast<unsigned long long>(low), |
| 543 | static_cast<unsigned long long>(high)); |
| 544 | } |
| 545 | return result; |
| 546 | } |
| 547 | |
| 548 | class TableTest {}; |
| 549 |