| 96 | } |
| 97 | |
| 98 | absl::string_view GetMediumStringView() { |
| 99 | static constexpr absl::string_view medium = |
| 100 | "A string that is too large for the small string optimization!"; |
| 101 | return medium; |
| 102 | } |
| 103 | |
| 104 | std::string GetMediumString() { return std::string(GetMediumStringView()); } |
| 105 |
no outgoing calls
no test coverage detected