| 51 | }; |
| 52 | |
| 53 | bool byte_units::parse(const std::string &val, std::string *err) |
| 54 | { |
| 55 | v = strict_iecstrtoll(val, err); |
| 56 | return err->empty(); |
| 57 | } |
| 58 | |
| 59 | std::ostream& operator<<(std::ostream &out, const byte_units &amount) |
| 60 | { |
no test coverage detected