File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -90,8 +90,7 @@ struct AlphaNumBuffer {
90
90
// Support for absl::StrCat() etc.
91
91
template <typename Sink>
92
92
friend void AbslStringify (Sink& sink, const AlphaNumBuffer& buffer) {
93
- absl::Format (&sink, " %s" ,
94
- absl::string_view (buffer.data .data (), buffer.size ));
93
+ sink.Append (absl::string_view (buffer.data .data (), buffer.size ));
95
94
}
96
95
};
97
96
} // namespace strings_internal
Original file line number Diff line number Diff line change @@ -212,7 +212,7 @@ class tstring {
212
212
// Support for absl::StrCat() etc.
213
213
template <typename Sink>
214
214
friend void AbslStringify (Sink& sink, const tstring& str) {
215
- absl::Format (& sink, " %s " , absl::string_view (str));
215
+ sink. Append ( absl::string_view (str));
216
216
}
217
217
};
218
218
You can’t perform that action at this time.
0 commit comments