| 200 | |
| 201 | auto Sorcery::Controller::get_characters() const -> std::string { |
| 202 | |
| 203 | std::string output{}; |
| 204 | for (const auto &character : _characters) |
| 205 | output.append(std::format("{:>26}: {}\n", enum_name(character.first), |
| 206 | character.second)); |
| 207 | |
| 208 | return output; |
nothing calls this directly
no outgoing calls
no test coverage detected