Skip to content

Commit

Permalink
cppcoreguidelines-avoid-non-const-global-variables
Browse files Browse the repository at this point in the history
  • Loading branch information
frederic-mahe committed Feb 20, 2025
1 parent 8bd9a6c commit a520a24
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
3 changes: 0 additions & 3 deletions src/vsearch.cc
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,6 @@ char * opt_relabel;
char * opt_reverse;
char * opt_samout;
char * opt_sample;
char * opt_search_exact;
char * opt_sintax;
char * opt_tabbedout;
char * opt_tsegout;
Expand Down Expand Up @@ -947,7 +946,6 @@ auto args_init(int argc, char ** argv, struct Parameters & parameters) -> void
opt_sample = nullptr;
opt_sample_pct = 0;
opt_sample_size = 0;
opt_search_exact = nullptr;
opt_self = 0;
opt_selfid = 0;
opt_sintax = nullptr;
Expand Down Expand Up @@ -2200,7 +2198,6 @@ auto args_init(int argc, char ** argv, struct Parameters & parameters) -> void
break;

case option_search_exact:
opt_search_exact = optarg;
parameters.opt_search_exact = optarg;
break;

Expand Down
1 change: 0 additions & 1 deletion src/vsearch.h
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,6 @@ extern char * opt_relabel;
extern char * opt_reverse;
extern char * opt_samout;
extern char * opt_sample;
extern char * opt_search_exact;
extern char * opt_sintax;
extern char * opt_tabbedout;
extern char * opt_tsegout;
Expand Down

0 comments on commit a520a24

Please sign in to comment.