| 13 | struct Sft : std::enable_shared_from_this<Sft> { |
| 14 | std::string history; |
| 15 | explicit Sft(const std::string &history_seed) : history{history_seed} {} |
| 16 | virtual ~Sft() = default; |
| 17 | |
| 18 | #if defined(__clang__) |
no outgoing calls
no test coverage detected