Skip to content

Commit

Permalink
Fix broken call of assign to range [nullptr, nullptr)
Browse files Browse the repository at this point in the history
  • Loading branch information
tsayukov committed Aug 11, 2024
1 parent 2addec3 commit d03c717
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/cpp/yt/string/format-inl.h
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ inline TString TStringBuilder::Flush()

inline void TStringBuilder::DoReset()
{
Buffer_ = {};
Buffer_ = TString{};
}

inline void TStringBuilder::DoReserve(size_t newLength)
Expand Down

0 comments on commit d03c717

Please sign in to comment.