| 55 | (static_cast<int128_t>(INT64_MAX) << 64) + static_cast<int128_t>(UINT64_MAX); |
| 56 | |
| 57 | void PrintTo(const BasicDecimal128& v, std::ostream* os) { *os << Decimal128(v); } |
| 58 | |
| 59 | void PrintTo(const BasicDecimal256& v, std::ostream* os) { *os << Decimal256(v); } |
| 60 |
nothing calls this directly
no test coverage detected