| 53 | |
| 54 | template <typename... Args> |
| 55 | static inline swoc::Errata |
| 56 | make_errata(int code, std::string_view fmt, Args &&...args) |
| 57 | { |
| 58 | return swoc::Errata(std::error_code(code, std::generic_category()), fmt, std::forward<Args>(args)...); |
| 59 | } |
| 60 | |
| 61 | static inline swoc::Errata |
| 62 | make_errata(int code, std::string_view text) |
no test coverage detected