Remove unused SimpleErrorReporter.

This commit is contained in:
Victor Zverovich 2014-07-16 08:48:27 -07:00
parent 4edc88f609
commit f86c812e1a

View File

@ -544,12 +544,6 @@ void FormatWinErrorMessage(
fmt::Writer &out, int error_code, fmt::StringRef message); fmt::Writer &out, int error_code, fmt::StringRef message);
#endif #endif
struct SimpleErrorReporter {
void operator()(const void *, fmt::StringRef message) const {
throw fmt::FormatError(message);
}
};
// Throws Exception(message) if format contains '}', otherwise throws // Throws Exception(message) if format contains '}', otherwise throws
// FormatError reporting unmatched '{'. The idea is that unmatched '{' // FormatError reporting unmatched '{'. The idea is that unmatched '{'
// should override other errors. // should override other errors.