| 52 | std::string mFile, mCode, mWhat, mStr; |
| 53 | |
| 54 | static std::string compose_what(const std::string &file, std::size_t line, const std::string &code, const std::string &what) |
| 55 | { |
| 56 | return "File \"" + file + "\", line " + std::to_string(line) + ": " + what + "\n>\t" + code + "\n"; |
| 57 | } |
| 58 | |
| 59 | static std::string compose_what_internal(const std::string &file, const std::string &what) |
| 60 | { |
nothing calls this directly
no test coverage detected