| 8 | #include <utility> |
| 9 | |
| 10 | std::string Term::style(Term::Style style) { return "\033[" + std::to_string((std::uint8_t)style) + 'm'; } |
| 11 | |
| 12 | std::pair<std::size_t, std::size_t> Term::get_size() |
| 13 | { |
nothing calls this directly
no test coverage detected