Remove unused constructor and data member

master
Sébastien Villemot 2023-12-01 12:09:51 +01:00
parent 0295c389a2
commit 5332c12ab7
No known key found for this signature in database
GPG Key ID: 2CECE9350ECEBE4A
1 changed files with 1 additions and 4 deletions

View File

@ -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: