TODO: Remove when C++20 is enabled and std::format can be used
| 181 | |
| 182 | // TODO: Remove when C++20 is enabled and std::format can be used |
| 183 | std::string PopStr(std::ostringstream& oss) |
| 184 | { |
| 185 | auto str = oss.str(); |
| 186 | oss.str(""); |
| 187 | oss.clear(); |
| 188 | return str; |
| 189 | } |
| 190 | } // namespace OpenRCT2::CommandLine::Sprite |
no test coverage detected