Skip to content

Commit

Permalink
fix warnings on ActiveLink (#927)
Browse files Browse the repository at this point in the history
  • Loading branch information
a-zakir authored Sep 12, 2024
1 parent 754175d commit 1280d2c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
class ProblemVariablesFileAdapter : public IProblemVariablesProviderPort {
public:
ProblemVariablesFileAdapter(
ProblemData data, std::vector<struct ActiveLink> vector_1,
ProblemData data, std::vector<ActiveLink> vector_1,
std::shared_ptr<ProblemGenerationLog::ProblemGenerationLogger>
shared_ptr_1,
std::filesystem::path path);
ProblemVariables Provide() override;
const ProblemData problem_data_;
const std::vector<struct ActiveLink> active_links_;
const std::vector<ActiveLink> active_links_;
std::shared_ptr<ProblemGenerationLog::ProblemGenerationLogger> logger_;
void extract_variables(
const std::filesystem::path& file, std::vector<std::string>& var_names,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class ProblemVariablesFromProblemAdapter
: public IProblemVariablesProviderPort {
public:
ProblemVariablesFromProblemAdapter(
std::shared_ptr<Problem> problem, std::vector<struct ActiveLink> vector_1,
std::shared_ptr<Problem> problem, std::vector<ActiveLink> vector_1,
std::shared_ptr<ProblemGenerationLog::ProblemGenerationLogger>
shared_ptr_1);
ProblemVariables Provide() override;
Expand All @@ -19,6 +19,6 @@ class ProblemVariablesFromProblemAdapter
std::map<colId, ColumnsToChange>& p_indirect_cost_columns) const;

std::shared_ptr<Problem> problem_;
const std::vector<struct ActiveLink> active_links_;
const std::vector<ActiveLink> active_links_;
std::shared_ptr<ProblemGenerationLog::ProblemGenerationLogger> logger_;
};

0 comments on commit 1280d2c

Please sign in to comment.