Follow standard naming conventions

This commit is contained in:
Victor Zverovich
2017-02-21 06:56:26 -08:00
parent 6a2ff287b2
commit c333dca065
13 changed files with 180 additions and 212 deletions
+1 -1
View File
@@ -38,7 +38,7 @@ void OutputRedirect::flush() {
int result = 0;
FMT_RETRY(result, fflush(file_));
if (result != 0)
throw fmt::SystemError(errno, "cannot flush stream");
throw fmt::system_error(errno, "cannot flush stream");
}
void OutputRedirect::restore() {