| 923 | class SdiffgenericCommand : public Command { |
| 924 | public: |
| 925 | SdiffgenericCommand(const std::string& name, const char* sflags, bool store) |
| 926 | : Command(name, sflags), _store(store) {} |
| 927 | |
| 928 | Expected<std::string> run(Session* sess) final { |
| 929 | const std::vector<std::string>& args = sess->getArgs(); |
nothing calls this directly
no outgoing calls
no test coverage detected