Added invocation of base class addOptions in derived to populate list with common and derived options, fixed errors with editor member variable type mismatch

This commit is contained in:
Sean Hawkes
2021-09-18 06:22:27 -05:00
parent ae7c617711
commit 76fa00abed
2 changed files with 4 additions and 3 deletions
+2 -2
View File
@@ -33,9 +33,9 @@ struct IsolTestOptions: CommonOptions
bool noColor = false;
bool acceptUpdates = false;
std::string testFilter = std::string{};
std::string editor = std::string{};
std::string* editor = nullptr;
explicit IsolTestOptions(const std::string* _editor);
explicit IsolTestOptions(std::string* _editor);
void addOptions() override;
bool parse(int _argc, char const* const* _argv) override;
void validate() const override;