Skip to content

Commit

Permalink
remove double semicolons, causes some compiler warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
timmyL17 committed Oct 30, 2024
1 parent fc2051d commit 4b464f1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/nasoq/QP/qp_utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ namespace nasoq {
double factt, init;
int num_update, num_downdate, num_refactor, num_solve;

qp_info();;
qp_info();

std::chrono::time_point<std::chrono::system_clock> tic();

Expand Down
2 changes: 1 addition & 1 deletion include/nasoq/nasoq.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ namespace nasoq {
int inner_iter, outer_iter;
double pert_diag, stop_tol;

nasoq_config(int a, int b, double c, double d);;
nasoq_config(int a, int b, double c, double d);
};

/*
Expand Down

0 comments on commit 4b464f1

Please sign in to comment.