| 43 | m_message += fmt::format(" In function: {}\n", info.function); |
| 44 | } |
| 45 | template <class... Args> void error(Args&&... args) |
| 46 | { |
| 47 | const std::string errorMsg = fmt::format(std::forward<Args>(args)...); |
| 48 | m_message += fmt::format(" Error: {}\n", errorMsg); |
| 49 | } |
| 50 | template <class... Args> void hint(Args&&... args) |
| 51 | { |
| 52 | const std::string hintMsg = fmt::format(std::forward<Args>(args)...); |
no test coverage detected