StringRef -> string_view, LongLong -> long_long
This commit is contained in:
+1
-1
@@ -65,7 +65,7 @@ File open_file() {
|
||||
}
|
||||
|
||||
// Attempts to write a string to a file.
|
||||
void write(File &f, fmt::StringRef s) {
|
||||
void write(File &f, fmt::string_view s) {
|
||||
std::size_t num_chars_left = s.size();
|
||||
const char *ptr = s.data();
|
||||
do {
|
||||
|
||||
Reference in New Issue
Block a user