Skip to content
Snippets Groups Projects
Verified Commit 5332c12a authored by Sébastien Villemot's avatar Sébastien Villemot
Browse files

Remove unused constructor and data member

parent 0295c389
No related branches found
No related tags found
No related merge requests found
......@@ -197,14 +197,11 @@ public:
class SearchFailedException
{
public:
int orig_symb_id, orig_lead_lag, symb_id;
int orig_symb_id, orig_lead_lag;
SearchFailedException(int orig_symb_id_arg, int orig_lead_lag_arg) :
orig_symb_id {orig_symb_id_arg}, orig_lead_lag {orig_lead_lag_arg}
{
}
explicit SearchFailedException(int symb_id_arg) : symb_id {symb_id_arg}
{
}
};
private:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment