Update README

This commit is contained in:
Victor Zverovich 2013-12-06 07:13:04 -08:00
parent f406a42baa
commit 383cc773e2

View File

@ -98,7 +98,7 @@ with an arbitrary action performed when formatting is complete:
// Formats an error message and prints it to std::cerr.
fmt::Formatter<PrintError> ReportError(const char *format) {
return fmt::Formatter<PrintError>(format);
return Move(fmt::Formatter<PrintError>(format));
}
ReportError("File not found: {}") << path;