File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -154,8 +154,8 @@ class optionst;
154
154
class janalyzer_parse_optionst : public parse_options_baset
155
155
{
156
156
public:
157
- virtual int doit () override ;
158
- virtual void help () override ;
157
+ int doit () override ;
158
+ void help () override ;
159
159
160
160
janalyzer_parse_optionst (int argc, const char **argv);
161
161
@@ -177,7 +177,7 @@ class janalyzer_parse_optionst : public parse_options_baset
177
177
protected:
178
178
std::unique_ptr<class_hierarchyt> class_hierarchy;
179
179
180
- void register_languages ();
180
+ void register_languages () override ;
181
181
182
182
void get_command_line_options (optionst &options);
183
183
Original file line number Diff line number Diff line change @@ -42,13 +42,13 @@ class goto_modelt;
42
42
class jdiff_parse_optionst : public parse_options_baset
43
43
{
44
44
public:
45
- virtual int doit ();
46
- virtual void help ();
45
+ int doit () override ;
46
+ void help () override ;
47
47
48
48
jdiff_parse_optionst (int argc, const char **argv);
49
49
50
50
protected:
51
- void register_languages ();
51
+ void register_languages () override ;
52
52
53
53
void get_command_line_options (optionst &options);
54
54
You can’t perform that action at this time.
0 commit comments