StringRef -> string_view, LongLong -> long_long

This commit is contained in:
Victor Zverovich
2017-02-18 07:34:52 -08:00
parent e022c21ddc
commit 50e716737d
14 changed files with 167 additions and 180 deletions
+1 -1
View File
@@ -103,7 +103,7 @@ std::string read(File &f, std::size_t count) {
#endif // FMT_USE_FILE_DESCRIPTORS
std::string format_system_error(int error_code, fmt::StringRef message) {
std::string format_system_error(int error_code, fmt::string_view message) {
fmt::internal::MemoryBuffer<char> out;
fmt::format_system_error(out, error_code, message);
return to_string(out);