| 215 | /* A bunch of private, handy routines. */ |
| 216 | |
| 217 | static inline Error createError(const Twine &Err) { |
| 218 | return make_error<StringError>(Err, inconvertibleErrorCode()); |
| 219 | } |
| 220 | |
| 221 | static inline unsigned int |
| 222 | partCountForBits(unsigned int bits) |
no test coverage detected