| 45 | } |
| 46 | |
| 47 | auto Sorcery::LevelStore::get(const int depth) const -> std::optional<Level> { |
| 48 | |
| 49 | auto level{_get(depth)}; |
| 50 | return level; |
| 51 | } |
| 52 | |
| 53 | // Overload = Operator |
| 54 | auto Sorcery::LevelStore::operator=(const LevelStore other) -> LevelStore & { |
nothing calls this directly
no outgoing calls
no test coverage detected